64 lines
2.7 KiB
Smarty
64 lines
2.7 KiB
Smarty
{% import "default/document/recycle.tpl" as macro %}
|
|
|
|
{{ schedule_form }}
|
|
{{ search_form }}
|
|
|
|
{% if meetings %}
|
|
<h4>{{ 'MeetingsFound'|get_plugin_lang('ZoomPlugin') }}: </h4>
|
|
<table class="table table-hover table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ 'Type'|get_lang }}</th>
|
|
<th>{{ 'Topic'|get_plugin_lang('ZoomPlugin') }}</th>
|
|
<th>{{ 'StartTime'|get_lang }}</th>
|
|
<th>{{ 'ForEveryone'|get_plugin_lang('ZoomPlugin') }}</th>
|
|
{# <th>{{ 'Course'|get_lang }}</th>#}
|
|
{# <th>{{ 'Session'|get_lang }}</th>#}
|
|
{% if allow_recording %}
|
|
<th>{{ 'Recordings'|get_plugin_lang('ZoomPlugin') }}</th>
|
|
{% endif %}
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for meeting in meetings %}
|
|
<tr>
|
|
<td>{{ meeting.typeName }}</td>
|
|
<td>{{ meeting.topic }}</td>
|
|
<td>{{ meeting.formattedStartTime }}</td>
|
|
<td>{{ meeting.user ? 'No'|get_lang : 'Yes'|get_lang }}</td>
|
|
{# <td>{{ meeting.course ? meeting.course : '-' }}</td>#}
|
|
{# <td>{{ meeting.session ? meeting.session : '-' }}</td>#}
|
|
<td>
|
|
{% if allow_recording and meeting.recordings.count > 0 %}
|
|
{% for recording in meeting.recordings %}
|
|
<dl>
|
|
<dt>
|
|
{{ recording.formattedStartTime }} ({{ recording.formattedDuration }}) {{ 'Password' | get_lang }}: {{ recording.recordingMeeting.password }}
|
|
</dt>
|
|
<dd>
|
|
<ul>
|
|
{% for file in recording.recordingMeeting.recording_files %}
|
|
<li>
|
|
<a href="{{ file.play_url }}" target="_blank">
|
|
{{ file.recording_type }}.{{ file.file_type }}
|
|
({{ macro.bytesToSize(file.file_size) }})
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</dd>
|
|
</dl>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
<a class="btn btn-primary" href="meeting.php?meetingId={{ meeting.meetingId }}">
|
|
{{ 'Details'|get_lang }}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %} |