{% extends "django_program/pretalx/base.html" %} {% block title %}Schedule{% endblock %} {% block content %} {% for day, slots in days %}
= today %}open{% endif %}> {{ day|date:"l, N j, Y" }} {{ slots|length }} slot{{ slots|length|pluralize }} {% for slot in slots %} {% endfor %}
Time Room Session Type
{{ slot.start|time:"H:i" }} – {{ slot.end|time:"H:i" }} {{ slot.room.name|default:"" }} {% 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 Presentation {% elif "Education" in sub_type %} Education Summit {% elif "Talk" in sub_type %} {{ sub_type }} {% else %} {{ sub_type }} {% endif %} {% endwith %} {% else %} {{ slot.get_slot_type_display }} {% endif %}
{% empty %}

No schedule data available yet.

{% endfor %} {% endblock %}