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

{% trans "Create Onsite Interview" %}

{% trans "for" %} {{ application.name }} - {{ job.title }}

{% trans "Back to application interview list" %}

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

{% if messages %}
{% for message in messages %}
{% if message.tags == 'error' %} {% elif message.tags == 'success' %} {% elif message.tags == 'warning' %} {% else %} {% endif %} {{ message }}
{% endfor %}
{% endif %}
{% csrf_token %}
{{ form.topic|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.topic.errors %}
{{ form.topic.errors }}
{% endif %}
{{ form.interview_date|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.interview_date.errors %}
{{ form.interview_date.errors }}
{% endif %}
{{ form.interview_time|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.interview_time.errors %}
{{ form.interview_time.errors }}
{% endif %}
{{ form.duration|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.duration.errors %}
{{ form.duration.errors }}
{% endif %}
{{ form.room_number|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.room_number.errors %}
{{ form.room_number.errors }}
{% endif %}
{{ form.physical_address|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.physical_address.errors %}
{{ form.physical_address.errors }}
{% endif %}
{% endblock %}