{% extends "wafer/base.html" %} {% load i18n %} {% load static from staticfiles %} {% block content %}
{% if validation_errors %}

{% trans "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 }} ({% trans 'Cancelled' %}) {% else %} {{ venue.title }} {% endif %}

{% trans 'Bucket' %}

{% regroup talks_unassigned by talk_type.name as grouped_talks %} {% for type, talks in grouped_talks %} {% if type %} {{ type }} {% endif %} {% for talk in talks %} {% if not talk.cancelled %} {{ talk.title|truncatechars:20 }} ({{ talk.track|truncatechars:10 }}) {% else %} {{ talk.title|truncatechars:12 }} ({% trans 'Cancelled' %}) {% endif %} {% endfor %} {% endfor %}
{% regroup talks_all by talk_type.name as grouped_talks %} {% for type, talks in grouped_talks %} {% if type %} {{ type }} {% endif %} {% for talk in talks %} {% if not talk.cancelled %} {{ talk.title|truncatechars:20 }} ({{ talk.track|truncatechars:10 }}) {% else %} {{ talk.title|truncatechars:12 }} ({% trans 'Cancelled' %}) {% endif %} {% endfor %} {% endfor %}
{% for page in pages %} {{ page.name|truncatechars:24 }} {% endfor %}
{% endblock %} {% block extra_foot %} {% endblock %}