{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Schedule Meeting" %} - {{ job.title }} - {{ block.super }}{% endblock %} {% block content %}

{% if has_future_meeting %} {% trans "Update Interview" %} for {{ application.name }} {% else %} {% trans "Schedule Interview" %} for {{ application.name }} {% endif %}

{% trans "Job" %}: {{ job.title }}

{% if has_future_meeting %}

{% trans "This application has upcoming interviews. You are updating an existing schedule." %}

{% endif %}
{% trans "Back to Candidates" %}
{% csrf_token %}
{{ form.topic }} {% if form.topic.errors %}
{% for error in form.topic.errors %}

{{ error }}

{% endfor %}
{% endif %}

{% trans "Default topic will be 'Interview: [Job Title] with [Candidate Name]' if left empty." %}

{{ form.start_time }} {% if form.start_time.errors %}
{% for error in form.start_time.errors %}

{{ error }}

{% endfor %}
{% endif %}

{% trans "Please select a date and time for interview." %}

{{ form.duration }} {% if form.duration.errors %}
{% for error in form.duration.errors %}

{{ error }}

{% endfor %}
{% endif %}
{% trans "Cancel" %}
{% endblock %} {% block customJS %} {% endblock %}