{% extends 'base.html' %} {% load static i18n %} {% block customCSS %} {% endblock %} {% block content %}

{{ meeting.topic }}

{{ meeting.status|title }}
{% if meeting.interview %} {% endif %}
{% 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 Now" %}
{% trans "Copied!" %}
{% trans "Join URL" %}: {{ meeting.join_url }}
{% 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 %} {% endif %}
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 %} Comment {% endif %}
{{ comment.created_at|date:"M d, Y P" }}

{{ comment.content|safe }}

{% endfor %}
{% else %}

No comments yet. Be the first to comment!

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