{% extends "base.html" %} {% load i18n crispy_forms_tags %} {% block title %}Create Remote Interview{% endblock %} {% block content %}

Create Remote Interview for {{ application.name }}

Back to Candidate List

Schedule a remote interview for {{ application.name }} for the position of {{ job.title }}.

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %} {{form|crispy}}
{% endblock %} {% block customJS %} {% endblock %}