{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Preview Interview Schedule" %}{% endblock %} {% block content %}

{% trans "Interview Schedule Preview:" %} **{{ job.title }}**

{% trans "Schedule Parameters" %}

{% trans "Working Hours:" %}

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

{% trans "Interview Duration:" %}

{{ interview_duration }} {% trans "minutes" %}

{% trans "Buffer Time:" %}

{{ buffer_time }} {% trans "minutes" %}

{% trans "Interview Period:" %}

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

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

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

{% trans "No daily breaks scheduled." %}

{% endif %}

{% trans "Scheduled Interviews Overview" %}

{% trans "Detailed List" %}

{% for item in schedule %} {% endfor %}
{% trans "Date" %} {% trans "Time" %} {% trans "Applicant" %} {% trans "Email" %}
{{ item.date|date:"F j, Y" }} {{ item.time|time:"g:i A" }} {{ item.application.name }} {{ item.application.email }}
{% csrf_token %} {% trans "Back to Edit" %}
{% endblock %}