{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Interview Details" %} - {{ block.super }}{% 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:"{% trans '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" %}
{% endif %}
{% trans "Back to Calendar" %} {% if interview.status == 'scheduled' %} {% endif %} {% if interview.status != 'cancelled' and interview.status != 'completed' %} {% endif %}
{% endblock %} {% block customJS %} {% endblock %}