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

{% blocktrans %}Create Remote Interview for {{ application.name }}{% endblocktrans %}

{% trans "Back to application List" %}

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

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