{% extends "wafer/base.html" %} {% load i18n %} {% load static from staticfiles %} {% block content %}
{% if validation_errors %}
{% for validation_error in validation_errors %}
{{ validation_error }}
{% endfor %}
{% endif %}

{% trans "Schedule Editor" %}

{% for venue in venues %} {% endfor %} {% for slot in slots %} {% for venue in slot.venues %} {% endfor %} {% endfor %}
{{ venue.name }}
{{ slot.name }}
{{ slot.start_time }} - {{ slot.end_time }}
{% if venue.scheduleitem_id %} {% endif %} {% if venue.talk and venue.talk.cancelled %} {{ venue.title }} (Cancelled) {% else %} {{ venue.title }} {% endif %}

Bucket

{% for talk in talks_unassigned %} {% if not talk.cancelled %} {{ talk.title|truncatechars:24 }} {% else %} {{ talk.title|truncatechars:12 }} (Cancelled) {% endif %} {% endfor %}
{% for talk in talks_all %} {% if not talk.cancelled %} {{ talk.title|truncatechars:24 }} {% else %} {{ talk.title|truncatechars:12 }} (Cancelled) {% endif %} {% endfor %}
{% for page in pages %} {{ page.name|truncatechars:24 }} {% endfor %}
{% endblock %} {% block extra_foot %} {% endblock %}