{% extends "base.html" %} {% load static crispy_forms_tags %} {%load i18n %} {% block customCSS %} {% endblock %} {% block content %}

Interview Schedule Preview: **{{ job.title }}**

{% trans "Schedule Parameters" %}

Working Hours: {{ start_time|time:"g:i A" }} to {{ end_time|time:"g:i A" }}

Interview Duration: {{ interview_duration }} minutes

Buffer Time: {{ buffer_time }} minutes

Interview Period: {{ start_date|date:"F j, Y" }} — {{ end_date|date:"F j, Y" }}

Active Days: {% for day_id in working_days %} {% if day_id == 0 %}Mon{% endif %} {% if day_id == 1 %}Tue{% endif %} {% if day_id == 2 %}Wed{% endif %} {% if day_id == 3 %}Thu{% endif %} {% if day_id == 4 %}Fri{% endif %} {% if day_id == 5 %}Sat{% endif %} {% if day_id == 6 %}Sun{% endif %} {% if not forloop.last %}, {% endif %} {% endfor %}

Interview Type: {{schedule_interview_type}}

{% trans "Daily Break Times" %}
{% if breaks %}
{% for break in breaks %} {{ break.start_time|time:"g:i A" }} — {{ break.end_time|time:"g:i A" }} {% endfor %}
{% else %}

No daily breaks scheduled.

{% endif %}

{% trans "Scheduled Interviews Overview" %}

{% trans "Detailed List" %}
{% for item in schedule %} {% endfor %}
Date Time Candidate Email
{{ item.date|date:"F j, Y" }} {{ item.time|time:"g:i A" }} {{ item.application.name }} {{ item.application.email }}
{% if schedule_interview_type == "Onsite" %} {% else %}
{% csrf_token %} {% trans "Back to Edit" %}
{% endif %}
{% endblock %}