{% extends 'overview/base.html' %} {% block title %}Videoconference{% endblock %} {% macro result_group_title(key) %} {{ key | format_human_date(format='full') | title }} {% endmacro %} {% macro result_group_entries(items) %}
{% trans %}Event{% endtrans %}
{% trans %}VC room{% endtrans %}
{% for event_vc_room in items %} {{ vc_room_entry(event_vc_room) }} {% endfor %} {% endmacro %} {% macro vc_room_entry(event_vc_room) %} {% set event = event_vc_room.event %} {{ event.start_dt.time() | format_time('HH:mm') }} {% if event_vc_room.vc_room.plugin %} {% else %} {% endif %} {% if event.has_location_info %} {% if event.room_name %} {{ event.room_name }} {% endif %} {% if event.venue_name %} ({{ event.venue_name }}) {% endif %} {% else %} {% trans -%} No location {%- endtrans %} {% endif %} {{ event.title }} {{ event_vc_room.vc_room.name }} {% endmacro %}