{% extends 'base.html' %} {% load static i18n %} {% block title %}{% trans "Interview Management" %} - ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
{% trans "Job" %}:
{{ interview.job.title }}
{# --- Remote/Onsite Logic - Handles both cases safely --- #}
{% trans "Type" %}: {{ interview.schedule.get_interview_type_display }}
{% if interview.schedule.interview_type == 'Remote' %}
{# CRITICAL FIX: Safe access to zoom_meeting details #}
{% trans "Zoom ID" %}: {{ interview.zoom_meeting.meeting_id|default:"N/A" }}
{% else %}
{% trans "Location" %}: {{ interview.schedule.location }}
{% endif %}
{% trans "Date" %}: {{ interview.interview_date|date:"M d, Y" }}
{% trans "Time" %}: {{ interview.interview_time|time:"H:i" }}
{% trans "Duration" %}: {{ interview.schedule.interview_duration }} minutes
{% trans "There are no interviews matching your current filters." %} {% trans "Clear filters" %} {% trans "to see all interviews." %}