{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Preview Interview Schedule" %}{% endblock %} {% block content %}
{% 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 "No daily breaks scheduled." %}
{% endif %}| {% 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 }} |