{% extends 'base.html' %} {% load static i18n %} {% block customCSS %} {% endblock %} {% block content %}
{# --- TOP BAR / BACK BUTTON --- #}
{% trans "Back to Meetings" %}
{# --- LEFT COLUMN (MAIN DETAILS) --- #}
{# --- CONSOLIDATED HEADER --- #}

{{ meeting.topic }}

{{ meeting.status|title }} {% if meeting.interview %} {% trans "Candidate" %}: {{ meeting.interview.candidate.name }} {% endif %}
{# --- MAIN DETAIL BODY --- #}

{% trans "Core Details" %}

{% trans "Meeting ID" %}:
{{ meeting.meeting_id }}
{% trans "Start Time" %}:
{{ meeting.start_time|date:"M d, Y H:i" }}
{% trans "Duration" %}:
{{ meeting.duration }} {% trans "minutes" %}
{% trans "Timezone" %}:
{{ meeting.timezone|default:"UTC" }}
{% trans "Host Email" %}:
{{ meeting.host_email|default:"N/A" }}
{# --- ACTION BAR AT THE BOTTOM OF THE MAIN CARD --- #}
{# --- RIGHT COLUMN (JOIN INFO) --- #}
{% if meeting.join_url %}

{% trans "Join Information" %}

{% trans "Join Meeting Now" %}
{% trans "Copied!" %}
{% trans "Join URL" %}: {{ meeting.join_url }}
{% if meeting.password %}
{% trans "Password" %}:
{{ meeting.password }}
{% endif %}
{% endif %}
{# --- API RESPONSE CARD (Full width, hidden by default) --- #} {% if meeting.zoom_gateway_response %} {% endif %} {# --- Comments Section (Full Width, below main content) --- #}
{% trans "Comments" %} ({{ meeting.comments.count }})
{% if user.is_authenticated %} {% endif %}
{% if meeting.comments.all %} {% for comment in meeting.comments.all|dictsortreversed:"created_at" %}
{{ comment.author.get_full_name|default:comment.author.username }} {% if comment.author != user %} {% trans "Comment" %} {% endif %}
{{ comment.created_at|date:"M d, Y P" }}

{{ comment.content|safe }}

{% endfor %} {% else %}

{% trans "No comments yet. Be the first to comment!" %}

{% endif %}
{% endblock %} {% block customJS %} {% endblock %}