{% extends "wafer/base.html" %} {% load i18n %} {% load static %} {% block title %}Edit Schedule - {{ WAFER_CONFERENCE_NAME }}{% endblock %} {% 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_all by talk_type.name as grouped_talks %} {% for type, talks in grouped_talks %} {% if type %}
{{ type }}
{% endif %} {% for talk in talks %} {% 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 }}
{{ talk.track }} {% else %} {{ talk.title }} {% endif %}
{% endfor %} {% endfor %}
{% for page in pages %}
{{ page.name }}
{% endfor %}
{% endblock %} {% block extra_foot %} {% endblock %}