{% extends "agenda/base.html" %} {% load compress %} {% load i18n %} {% load rich_text %} {% load staticfiles %} {% block agenda_custom_header %} {% endblock %} {% block content %}

»{{ talk.title }}« {% if request.user in talk.speakers.all %} {{ phrases.base.edit }} {% endif %} {% if talk.does_accept_feedback %} {{ phrases.agenda.feedback }} {% endif %} {{ talk.slot.start.date|date:"c" }}, {{ talk.slot.start|date:"H:i" }}–{{ talk.slot.end|date:"H:i" }}, {{ talk.slot.room.name }}

{% if talk.do_not_record %} {{ phrases.agenda.schedule.do_not_record }} {% endif %} {% if talk.recording_url %} {{ talk.rendered_recording_iframe|safe }} {% endif %}
{{ talk.abstract|rich_text }}
{{ talk.description|rich_text }}
{% if speakers|length %}
{% if speakers.1 %} {% trans "Speakers" %} {% elif speakers.0 %} {% trans "Speaker" %} {% endif %}
{% for speaker in speakers %}
{{ speaker.get_display_name }}
{% if speaker.other_talks.count > 1 %} {{ phrases.agenda.speaker_other_talks }} {% trans 'Other talks by this speaker:' %} {% elif speaker.other_talks.count == 1 %} {{ phrases.agenda.speaker_other_talk }} "{{ speaker.other_talks.0.submission.title }}". {% endif %}
{% endfor %}
{% endif %}
{% endblock %}