{% extends 'layout/base.html' %} {% from 'forms/_form.html' import form_header, form_row, form_footer %} {% block title %}{% trans %}Current videoconference 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 videoconference rooms have been added yet.{% endtrans %}
{% endif %}
{% if plugins|length == 1 %} {% trans plugin_name=plugins[0].friendly_name %}Create {{ plugin_name }} room{% endtrans %} {% elif plugins|length > 1 %} {%- trans %}Create new room{% endtrans -%} {% endif %} {% trans %}Add existing room{% endtrans %}
{% else %}
{% trans %}There are no Videoconference plugins available.{% endtrans %}
{% endif %}
{% endblock %}