You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.9 KiB
52 lines
1.9 KiB
{% if createInstantMeetingForm %}
|
|
{{ createInstantMeetingForm }}
|
|
{% endif %}
|
|
|
|
{% if scheduledMeetings.count %}
|
|
<div class="page-header">
|
|
<h2>{{ 'ScheduledMeetings'|get_lang }}</h2>
|
|
</div>
|
|
<table class="table">
|
|
<tr>
|
|
<th>{{ 'Topic'|get_plugin_lang('ZoomPlugin') }}</th>
|
|
<th>{{ 'Agenda'|get_plugin_lang('ZoomPlugin') }}</th>
|
|
<th>{{ 'StartTime'|get_lang }}</th>
|
|
<th>{{ 'Duration'|get_lang }}</th>
|
|
<th>{{ 'Actions'|get_lang }}</th>
|
|
</tr>
|
|
{% for meeting in scheduledMeetings %}
|
|
<tr>
|
|
<td>
|
|
{{ meeting.meetingInfoGet.topic }}
|
|
</td>
|
|
<td>
|
|
{{ meeting.meetingInfoGet.agenda|nl2br }}
|
|
</td>
|
|
<td>{{ meeting.formattedStartTime }}</td>
|
|
<td>{{ meeting.formattedDuration }}</td>
|
|
<td>
|
|
<a class="btn btn-primary" href="join_meeting.php?meetingId={{ meeting.meetingId }}&{{ _p.web_cid_query }}">
|
|
{{ 'Join'|get_plugin_lang('ZoomPlugin') }}
|
|
</a>
|
|
|
|
{% if is_manager %}
|
|
<a class="btn btn-default" href="meeting.php?meetingId={{ meeting.meetingId }}&{{ _p.web_cid_query }}">
|
|
{{ 'Details'|get_plugin_lang('ZoomPlugin') }}
|
|
</a>
|
|
|
|
<a class="btn btn-danger"
|
|
href="start.php?action=delete&meetingId={{ meeting.meetingId }}&{{ _p.web_cid_query }}"
|
|
onclick="javascript:if(!confirm('{{ 'AreYouSureToDelete' | get_lang }}')) return false;"
|
|
>
|
|
{{ 'Delete'|get_lang }}
|
|
</a>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
|
|
{% if scheduleMeetingForm %}
|
|
{{ scheduleMeetingForm }}
|
|
{% endif %} |