{% extends "agenda/base.html" %} {% load compress %} {% load static %} {% load html_signal %} {% load i18n %} {% load rich_text %} {% block title %}{{ submission.title }} ::{% endblock %} {% block meta_title %}{{ submission.title }}{% endblock %} {% block social_title %}{{ submission.title }}{% endblock %} {% block meta_description %}{{ submission_description }}{% endblock %} {% block social_description %}{{ submission_description }}{% endblock %} {% block meta_image %} {% endblock %} {% block alternate_link %} {% endblock %} {% block agenda_custom_header %} {% compress js %} {% endcompress %} {% compress css %} {% endcompress %} {% endblock %} {% block agenda_content %}
{% html_signal "pretalx.agenda.signals.html_above_session_pages" sender=request.event request=request submission=submission %}

{{ submission.title }}
{% if submission.state == 'confirmed' and request.event.current_schedule %} .ical {% endif %} {% if submission.does_accept_feedback and request.event.feature_flags.use_feedback and not is_html_export %} {{ phrases.agenda.feedback }} {% endif %} {% if request.user in submission.speakers.all %} {{ phrases.base.edit }} {% endif %}
{% if talk_slots|length == 1 %} {{ talk_slots.0.start|date:DAY_MONTH_DATE_FORMAT }}, {{ talk_slots.0.start|date:"TIME_FORMAT" }}–{{ talk_slots.0.end|date:"TIME_FORMAT" }} ({{ request.event.timezone }}), {{ talk_slots.0.room.name }} {% if talk_slots.0.room.description %}{% endif %} {% endif %} {% if request.event.is_multilingual and request.event.cfp.request_content_locale %}
{% translate "Language" %}: {{ submission.get_content_locale_display }}
{% endif %} {% if submission.do_not_record %} {{ phrases.agenda.schedule.do_not_record }} {% endif %}

{% if recording_iframe %} {{ recording_iframe|safe }} {% endif %} {% if submission.image %} {% endif %} {% if talk_slots|length > 1 %}
    {% for talk in talk_slots %}
  • {{ talk.start|date:DAY_MONTH_DATE_FORMAT }}, {{ talk.start|date:"TIME_FORMAT" }}–{{ talk.end|date:"TIME_FORMAT" }}, {{ talk.room.name }} {% if room.description %}{% endif %}
  • {% endfor %}

{% blocktranslate trimmed with tz=request.event.timezone %}All times in {{ tz }}{% endblocktranslate %}

{% endif %}
{{ submission.abstract|rich_text }}
{% if submission.abstract and submission.description %}
{% endif %}
{{ submission.description|rich_text }}
{% if answers %}
{% for answer in answers %} {{ answer.question.question }} – {% include "common/question_answer.html" with answer=answer %} {% endfor %} {% endif %}
{% if submission.active_resources %}
{% translate "See also:" %} {% if submission.active_resources.count == 1 %}{% with resource=submission.active_resources.first %} {% include "agenda/includes/submission_resource.html" %} {% endwith %}{% else %}
    {% for resource in submission.active_resources %}
  • {% include "agenda/includes/submission_resource.html" %}
  • {% endfor %}
{% endif %}
{% endif %}
{% html_signal "pretalx.agenda.signals.html_below_session_pages" sender=request.event request=request submission=submission %}
{% if not hide_speaker_links %} {% for speaker in speakers %}
{{ speaker.talk_profile.biography|default:''|rich_text }}
{% if speaker.other_submissions %} {% translate "This speaker also appears in:" %} {% endif %}
{% endfor %} {% endif %}
{% endblock %}