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

{% trans "Create Remote Interview for" %} {{ application.name }}

{% trans "Back to application List" %}

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

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