{% extends "agenda/base.html" %} {% load compress %} {% 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 %}{% if submission.image %} {% elif request.event.logo %} {% endif %}{% endblock %} {% block alternate_link %} {% endblock %} {% block agenda_content %}

{{ submission.title }}
{% if submission.state == 'confirmed' %} .ical {% endif %} {% if submission.does_accept_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:"Y-m-d" }}, {{ talk_slots.0.start|date:"H:i" }}–{{ talk_slots.0.end|date:"H:i" }}, {{ talk_slots.0.room.name }} {% endif %} {% if request.event.is_multilingual %}
{% translate "Language" %}: {{ submission.get_content_locale_display }}
{% endif %} {% if submission.do_not_record %} {{ phrases.agenda.schedule.do_not_record }} {% endif %}

{% if talk_slots|length > 1 %}
    {% for talk in talk_slots %}
  • {{ talk.start|date:"Y-m-d" }}, {{ talk.start|date:"H:i" }}–{{ talk.end|date:"H:i" }}, {{ talk.room.name }}
  • {% endfor %}
{% endif %} {% if recording_iframe %} {{ recording_iframe|safe }} {% 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 %} {{ resource.description }} {% endwith %}{% else %} {% endif %}
{% endif %}
{% if submission.image %} {% endif %}
{% for speaker in speakers %} {% include "agenda/speaker_block.html" with speaker=speaker.talk_profile sessions=speaker.other_submissions add_links=True filter_talks=True %} {% endfor %}
{% endblock %}