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

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

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

{% if has_future_meeting %} {% 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 the interview." %}
{{ form.duration }} {% if form.duration.errors %}
{% for error in form.duration.errors %} {{ error }} {% endfor %}
{% endif %}
{% trans "Cancel" %}
{% endblock %}