{% extends "django_program/manage/base.html" %} {% load tz %} {% block title %}Schedule{% endblock %} {% block page_title %}

Schedule

Schedule slots grouped by date

{% endblock %} {% block content %} {% if grouped_slots %} {% for day, slots in grouped_slots %}
{{ day|date:"l, N j, Y" }} {{ slots|length }} slot{{ slots|length|pluralize }}
{% for slot in slots %} {% endfor %}
Time Title Type Room Track Actions
{{ slot.start|time:"H:i" }} – {{ slot.end|time:"H:i" }} {% if slot.talk %} {{ slot.display_title }} {% else %} {{ slot.display_title }} {% endif %} {% if slot.talk and slot.talk.submission_type %} {% with sub_type=slot.talk.submission_type %} {% if "Tutorial" in sub_type %} Tutorial {% elif "Poster" in sub_type %} Poster {% elif "Charlas" in sub_type %} Charlas {% elif "Sponsor" in sub_type %} Sponsor {% elif "Education" in sub_type %} Education Summit {% elif "Talk" in sub_type %} {{ sub_type }} {% else %} {{ sub_type }} {% endif %} {% endwith %} {% elif slot.slot_type == 'break' %} Break {% elif slot.slot_type == 'social' %} Social {% elif slot.slot_type == 'other' %} Other {% else %} {{ slot.get_slot_type_display }} {% endif %} {% if slot.room %}{{ slot.room.name }}{% else %}—{% endif %} {% if slot.talk and slot.talk.track %} {{ slot.talk.track }} {% else %} — {% endif %} Edit
{% endfor %} {% include "django_program/manage/_pagination.html" %} {% else %}

No schedule slots defined for this conference.

{% endif %} {% endblock %}