{% extends "admin/change_list.html" %} {% load i18n %} {# This plugs our extra validation information into the end of the content block #} {% block content %} {{ block.super }}
{% if errors %}

{% trans "Errors in the schedule" %}

{% block displayerrors %} {% if errors.clashes %}

{% trans "Clashes" %}

{% endif %} {% if errors.validation %}

{% trans "Validation errors" %}

{% endif %} {% if errors.non_contiguous %}

{% trans "Items in the schedule with non-contiguous slots" %}

{% endif %} {% if errors.duplicates %}

{% trans "Duplicates in the schedule" %}

{% endif %} {% if errors.venues %}

{% trans "Venues assigned on days they are not available" %}

{% endif %} {% endblock %}
{% endif %}
{% endblock %} {% block object-tools-items %} {{ block.super }}
  • {% trans "Edit schedule" %}
  • {% endblock %}