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

{% include "icons/meeting.html" %} {% trans "Zoom Meetings" %}

{% include "includes/search_form.html" with search_query=search_query %} {% trans "Create Meeting" %}
{% if meetings %}
{# View Switcher #} {% include "includes/_list_view_switcher.html" with list_id="meetings-list" %} {# Card View (Default) #}
{% for meeting in meetings %}
{{ meeting.topic }}
{% trans "ID" %}:
{{ meeting.meeting_id|default:meeting.id }}
{% trans "Start Time" %}:
{{ meeting.start_time|date:"M d, Y H:i" }}
{% trans "Duration" %}:
{{ meeting.duration }} minutes
{% trans "Status" %}:
{% if meeting.status == 'waiting' %} {% trans "Waiting" %} {% elif meeting.status == 'started' %} {% trans "Started" %} {% elif meeting.status == 'ended' %} {% trans "Ended" %} {% endif %}
{% if meeting.join_url %}
{% trans "Join URL" %}:
{% endif %}
{% endfor %}
{# Table View #}
{% for meeting in meetings %} {% endfor %}
{% trans "Topic" %} {% trans "ID" %} {% trans "Start Time" %} {% trans "Duration" %} {% trans "Status" %} {% trans "Actions" %}
{{ meeting.topic }} {{ meeting.meeting_id|default:meeting.id }} {{ meeting.start_time|date:"M d, Y H:i" }} {{ meeting.duration }} minutes {% if meeting.status == 'waiting' %} {% trans "Waiting" %} {% elif meeting.status == 'started' %} {% trans "Started" %} {% elif meeting.status == 'ended' %} {% trans "Ended" %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}

{% trans "No meetings found." %}

{% if user.is_staff %} {% trans "Create Your First Meeting" %} {% endif %}
{% endif %}
{% endblock %}