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

{% trans "Interview Details" %}

{{ job.title }}
{% trans "Applicant Information"%}
{% trans "Name:" %} {{ interview.candidate.name }}
{% trans "Email:" %} {{ interview.candidate.email }}
{% trans "Phone:" %} {{ interview.candidate.phone|default:"Not provided" }}
{% trans "Interview Details" %}
{% trans "Date:" %} {{ interview.interview_date|date:"l, F j, Y" }}
{% trans "Time:" %} {{ interview.interview_time|time:"g:i A" }}
{% trans "Status:" %} {{ interview.status|title }}
{% if interview.zoom_meeting %}
{% trans "Meeting Information" %}
{% trans "Meeting ID:" %} {{ interview.zoom_meeting.meeting_id }}
{% trans "Topic:" %} {{ interview.zoom_meeting.topic }}
{% trans "Duration:" %} {{ interview.zoom_meeting.duration }} {% trans "minutes" %}
{% trans "Join URL:" %} {{ interview.zoom_meeting.join_url }}
{% endif %}
{% trans "Back to Calendar" %} {% if interview.status == 'scheduled' %} {% endif %} {% if interview.status != 'cancelled' and interview.status != 'completed' %} {% endif %}
{% endblock %}