Save participants when they join to videoconference - refs BT#11636

pull/2487/head
Angel Fernando Quiroz Campos 9 years ago
parent 87fb5bd417
commit bc27b93945
  1. 7
      plugin/bbb/admin.tpl

@ -31,11 +31,10 @@
{{ meeting.show_links }}
{% endif %}
</td>
<td>{{ meeting.course ? meeting.course.title : '-' }}</td>
<td>{{ meeting.session ? meeting.session.name : '-' }}</td>
<td>{{ meeting.participants ? meeting.participants|join('<br>') : '-' }}</td>
<td>{{ meeting.course ?: '-' }}</td>
<td>{{ meeting.session ?: '-' }}</td>
<td>
{{ meeting.participants|join('<br>') }}
{{ meeting.participants ? meeting.participants|join('<br>') : '-' }}
</td>
</tr>
{% endfor %}

Loading…
Cancel
Save