Files
Xes 73154ae174
Behat tests 1.11.x 🐞 / PHP 7.4 Test on ubuntu-latest (push) Canceled after 0s
PHP-CS-Fixer / composer_install (7.4) (push) Canceled after 0s
Chamilo 1.11.40 (ZIP oficial v1.11.40)
Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip
sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439
Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
2026-08-06 17:59:45 +02:00

60 lines
2.1 KiB
Smarty

{% if instant_meeting_form %}
{{ instant_meeting_form }}
{% endif %}
{% if group_form %}
{{ group_form }}
{% endif %}
{% if meetings.count %}
<div class="page-header">
<h2>{{ 'ScheduledMeetings'|get_lang }}</h2>
</div>
<table class="table">
<tr>
<th>{{ 'Type'|get_lang }}</th>
<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 meetings %}
<tr>
<td>{{ meeting.typeName }}</td>
<td>
{{ meeting.meetingInfoGet.topic }}
{{ meeting.webinarSchema.topic }}
</td>
<td>
{{ meeting.meetingInfoGet.agenda|nl2br }}
{{ meeting.webinarSchema.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 schedule_meeting_form %}
{{ schedule_meeting_form }}
{% endif %}