{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Zoom Meetings" %} - {{ block.super }}{% endblock %} {% block extra_css %} {% 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 %}
{% 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 %}
{% if is_paginated %} {% endif %} {% else %}

{% trans "No meetings found." %}

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