{% extends "django_program/manage/base.html" %} {% block title %}Talks{% endblock %} {% block page_title %}
{% if current_type %}Filtered by submission type{% else %}Talk submissions and scheduling{% endif %}
{% endblock %} {% block content %} {% if talks %}| Title | Type | Track | State | Room | Scheduled | Actions |
|---|---|---|---|---|---|---|
| {{ talk.title }} {% if talk.synced_at %} Synced {% endif %} | {% if talk.submission_type %}{{ talk.submission_type }}{% else %}—{% endif %} | {% if talk.track %}{{ talk.track }}{% else %}—{% endif %} | {% if talk.state == 'confirmed' %} {{ talk.state }} {% elif talk.state == 'accepted' %} {{ talk.state }} {% elif talk.state == 'submitted' %} {{ talk.state }} {% elif talk.state %} {{ talk.state }} {% else %} — {% endif %} | {% if talk.room %}{{ talk.room.name }}{% else %}—{% endif %} | {% if talk.slot_start %} {{ talk.slot_start|date:"N j, H:i" }} {% else %} Unscheduled {% endif %} | Edit |
{% if search_query or current_state or current_scheduled %}No talks match your filters.{% else %}No talks synced for this conference.{% endif %}