{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Meeting Details" %} - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{{ meeting.topic }}

{{ meeting.status|title }} {% trans "Back to Meetings" %}

{% trans "Meeting Information" %}

{% trans "Meeting ID" %}:
{{ meeting.meeting_id }}
{% trans "Topic" %}:
{{ meeting.topic }}
{% 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" }}
{% if meeting.join_url %}

{% trans "Join Information" %}

{% trans "Join Meeting" %} {% comment %}
{% trans "Join URL:" %} {{ meeting.join_url }}
{% endcomment %} {% if meeting.password %}
{% trans "Password" %}: {{ meeting.password }}
{% endif %}
{% endif %}

{% trans "Settings" %}

{% trans "Participant Video" %}:
{{ meeting.participant_video|yesno:"Yes,No" }}
{% trans "Join Before Host" %}:
{{ meeting.join_before_host|yesno:"Yes,No" }}
{% trans "Mute Upon Entry" %}:
{{ meeting.mute_upon_entry|yesno:"Yes,No" }}
{% trans "Waiting Room" %}:
{{ meeting.waiting_room|yesno:"Yes,No" }}
{% if meeting.zoom_gateway_response %} {% trans "View API Response" %} {% endif %} {% trans "Update Meeting" %}
{% csrf_token %}
{% if meeting.zoom_gateway_response %} {% comment %}

{% trans "Zoom API Response" %}

{{ meeting.zoom_gateway_response|safe }}
{% endcomment %} {% endif %}
{% endblock %}