{% extends 'admin/base.html' %} {% from 'forms/form_widget.html' import form_header, form_row, form_footer %} {% block title %}{% trans %}Current video rooms{% endtrans %}{% endblock %} {% block content %}
{% if plugins %} {% if event_vc_rooms %} {% for event_vc_room in event_vc_rooms|sort(attribute='vc_room.name') %} {% set vc_room = event_vc_room.vc_room %} {% endfor %}
{% trans %}Name{% endtrans %}
{% if vc_room.plugin %} {% else %} {{ vc_room.type }} {% endif %} {{ vc_room.name }}
{% if vc_room.status.name != 'deleted' %} {% endif %} {% if vc_room.status.name != 'deleted' and vc_room.plugin %} {{ vc_room.plugin.render_buttons(vc_room, event_vc_room) | safe }} {% endif %}
{% if vc_room.plugin %} {{ vc_room.plugin.render_manage_event_info_box(vc_room, event_vc_room, event) | safe }} {% endif %}
{% else %}
{% trans %}No video conference rooms have been added yet.{% endtrans %}
{% endif %}
{% if plugins|length == 1 %} {{ plugins[0].render_custom_create_button(event=event) | safe }} {% elif plugins|length > 1 %} {%- trans %}Create new room{% endtrans -%} {% endif %} {% trans %}Add existing room{% endtrans %}
{% else %}
{% trans %}There are no Video Conference plugins available.{% endtrans %}
{% endif %}
{% endblock %}