{% extends "django_program/manage/base.html" %} {% block title %}Talks{% endblock %} {% block page_title %}

{% if current_type %}{{ current_type }}{% else %}Talks{% endif %}

{% if current_type %}Filtered by submission type{% else %}Talk submissions and scheduling{% endif %}

{% endblock %} {% block content %}
{% if search_query or current_state or current_scheduled %} Clear {% endif %} {% if current_type %} All Types {% endif %}
{% if talks %} {% for talk in talks %} {% endfor %}
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' %} {% 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
{% include "django_program/manage/_pagination.html" %} {% else %}

{% if search_query or current_state or current_scheduled %}No talks match your filters.{% else %}No talks synced for this conference.{% endif %}

{% endif %} {% endblock %}