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

Create Onsite Interview for {{ candidate.name }}

Back to Candidate List

Schedule an onsite interview for {{ candidate.name }} for the position of {{ job.title }}.

{% 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 %}