{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Interviews & Meetings" %} - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
{% trans "Candidate" %}: {{ meeting.interview.application.person.full_name|default:"N/A" }}
{% trans "Job" %}: {{ meeting.interview.job.title|default:"N/A" }}
{# Dynamic location/type details #}
{% if meeting.type == 'Remote' %}
{% trans "Remote ID" %}: {{ meeting.meeting_id|default:meeting.location.id }}
{% elif meeting.type == 'Onsite' %}
{# Use the details object for concrete location info #}
{% trans "Location" %}: {{ meeting.details.room_number|default:meeting.details.physical_address|truncatechars:30 }}
{% endif %}
{% trans "Start" %}: {{ meeting.start_time|date:"M d, Y H:i" }}
{% trans "Duration" %}: {{ meeting.duration }} minutes
| {% trans "Topic" %} | {% trans "Type" %} | {% trans "Candidate" %} | {% trans "Job" %} | {% trans "Start Time" %} | {% trans "Duration" %} | {% trans "Status" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|---|
| {{ meeting.topic }} | {# Display the event type badge #} {{ meeting.type|title }} | {{ meeting.interview.application.person.full_name }} | {{ meeting.interview.job.title }} | {{ meeting.start_time|date:"M d, Y H:i" }} | {{ meeting.duration }} min | {# Display the meeting status badge from the ScheduledInterview model #} {{ meeting.interview.get_status_display }} |
{% trans "Create your first interview or adjust your filters." %}
{% comment %} {% endcomment %}