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

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

{% trans "Back to application List" %}

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

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
{{ form.topic }} {% if form.topic.errors %}
{{ form.topic.errors }}
{% endif %}
{{ form.interview_date }} {% if form.interview_date.errors %}
{{ form.interview_date.errors }}
{% endif %}
{{ form.interview_time }} {% if form.interview_time.errors %}
{{ form.interview_time.errors }}
{% endif %}
{{ form.duration }} {% if form.duration.errors %}
{{ form.duration.errors }}
{% endif %}
{% comment %}
{{ form.interviewer }} {% if form.interviewer.errors %}
{{ form.interviewer.errors }}
{% endif %}
{% endcomment %}
{% comment %}
{{ form.topic }} {% if form.topic.errors %}
{{ form.topic.errors }}
{% endif %}
{% endcomment %}
{{ form.physical_address }} {% if form.physical_address.errors %}
{{ form.physical_address.errors }}
{% endif %}
{{ form.room_number }} {% if form.room_number.errors %}
{{ form.room_number.errors }}
{% endif %}
{% comment %}
{{ form.floor_number }} {% if form.floor_number.errors %}
{{ form.floor_number.errors }}
{% endif %}
{% endcomment %} {% comment %}
{% endcomment %} {% comment %}
{{ form.parking_info }} {% if form.parking_info.errors %}
{{ form.parking_info.errors }}
{% endif %}
{% endcomment %} {% comment %}
{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors }}
{% endif %}
{% endcomment %}
{% endblock %} {% block extra_js %} {% endblock %}