{% extends "django_program/manage/base.html" %} {% block title %}Talk Detail{% endblock %} {% block breadcrumb %} {% endblock %} {% block page_title %}

{{ talk.title }}

Talk details

{% endblock %} {% block page_actions %} Edit {% endblock %} {% block content %}
Submission Type
{% if talk.submission_type %}{{ talk.submission_type }}{% else %}—{% endif %}
Track
{% if talk.track %}{{ talk.track }}{% else %}—{% endif %}
State
{% if talk.state %}{{ talk.state }}{% else %}—{% endif %}
Duration
{% if talk.duration %}{{ talk.duration }} min{% else %}—{% endif %}
Room
{% if talk.room %}{{ talk.room.name }}{% else %}—{% endif %}
Pretalx Code
{{ talk.pretalx_code }}

Speakers

{% if talk.speakers.exists %} {% else %}

No speakers linked to this talk.

{% endif %}
{% if talk.abstract %}

Abstract

{{ talk.abstract|linebreaks }}
{% endif %} {% if talk.description %}

Description

{{ talk.description|linebreaks }}
{% endif %}

Schedule Slots

{% if talk_slots %} {% else %}

No schedule slots linked to this talk.

{% endif %}
{% endblock %}