{% from '_password.html' import password %} {% from '_clipboard_input.html' import clipboard_input %} {% set host = vc_room.data.host %} {% set alt_hosts = vc_room.data.alternative_hosts %}
{% trans %}Zoom Meeting ID{% endtrans %}
{{ vc_room.data.zoom_id }}
{% if vc_room.data.description %}
{% trans %}Description{% endtrans %}
{{ vc_room.data.description }}
{% endif %}
{% trans %}Host{% endtrans %}
{{ (host|decodeprincipal).full_name }}
{% if alt_hosts %}
{% trans count=alt_hosts|length -%} Alternative host {%- pluralize -%} Alternative hosts {%- endtrans %}
{{ alt_hosts | map('decodeprincipal') | map(attribute='full_name') | join(', ') }}
{% endif %}
{% trans %}Linked to{% endtrans %}
{% set obj = event_vc_room.link_object %} {% if obj is none %} (missing {{ event_vc_room.link_type.name }}) {% elif event_vc_room.link_type.name == 'event' %} {% trans %}the whole event{% endtrans %} {% elif event_vc_room.link_type.name == 'contribution' %} {% trans %}Contribution{% endtrans %}: {{ obj.title }} {% elif event_vc_room.link_type.name == 'block' %} {% trans %}Session{% endtrans %}: {{ obj.full_title }} {% endif %}
{% trans %}Passcode{% endtrans %}
{{ vc_room.data.password }}
{% trans %}Zoom URL{% endtrans %}
{{ clipboard_input(vc_room.data.url, name="vc-room-url") }}
{% trans %}Created on{% endtrans %}
{{ vc_room.created_dt | format_datetime(timezone=event.tzinfo) }}
{% if vc_room.modified_dt %}
{% trans %}Modified on{% endtrans %}
{{ vc_room.modified_dt | format_datetime(timezone=event.tzinfo) }}
{% endif %}