{% extends 'events/display/conference/base.html' %} {% from 'attachments/_attachments.html' import render_attachments %} {% block content %}
{{ event.description }}
{% trans %}Starts{% endtrans %}
{% trans %}Ends{% endtrans %}
{{ event.display_tzinfo.zone }}
{% block location_info %} {% if event.has_location_info or event.address %}
{{ 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 %}
    {% 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 is_submitter = event.can_manage(session.user, 'submit') %} {% if is_submitter or event.attached_items %}
{{ render_attachments(event.attached_items, management=false) }}
{% if is_submitter %}
{% endif %}
{% endif %} {% if event.additional_info %}
{{ event.additional_info|rich_markup }}
{% endif %}
{{ template_hook('conference-home-info', event=event) }}
{% endblock %}