{% extends 'events/display/conference/base.html' %} {% from 'attachments/_attachments.html' import render_attachments %} {% block content %}
{{ event.description }}

{% trans %}Conference information{% endtrans %}

{% trans %}Date/Time{% endtrans %}

{% trans %}Starts{% endtrans %}

{% trans %}Ends{% endtrans %}

{% set display_tz = event.display_tzinfo.zone %} {% trans %}All times are in {{ display_tz }}{% endtrans %}

{% block location_info %} {% if event.has_location_info or event.address %}

{% trans %}Location{% endtrans %}

{{ event.venue_name }}
{% if event.room_name %}
{{ event.room_name }}
{% endif %} {% if event.address %}
{{ event.address }}
{% endif %} {% if event.map_url %} {% trans %}Go to map{% endtrans %} {% endif %}
{% endif %} {% endblock %} {% if event.person_links %}

{% trans %}Chairpersons{% endtrans %}

    {% for link in event.person_links|sort(attribute='display_order_key') %}
  • {% if link.email %} {% if session.user %} {{ link.full_name }} {% else %} {{ link.full_name }} {% endif %} {% else %} {{ link.full_name }} {% endif %}
  • {% endfor %}
{% endif %} {% set can_attach = event.can_manage_attachments(session.user) %} {% if can_attach or event.attached_items %}

{% trans %}Materials{% endtrans %}

{{ render_attachments(event.attached_items, management=false) }}
{% if can_attach %}
{% endif %}
{% endif %} {% if event.additional_info %}

{% trans %}Extra information{% endtrans %}

{{ event.additional_info|rich_markup }}
{% endif %}
{{ template_hook('conference-home-info', event=event) }}
{% endblock %}