{% extends "site_base.html" %} {% load i18n %} {% block head_title %}Conference Schedule Edit{% endblock %} {% block page_title %}Conference Schedule Edit{% endblock %} {% block content %}

Schedule Admin

{% csrf_token %} {{ form.as_p }}
{% for timetable in days %}

{{ timetable.day.date|date:"l" }}, {{ timetable.day.date }}

{% include "symposion/schedule/_grid.html" with edit_schedule=True %}
{% include "symposion/schedule/_mobile.html" with edit_schedule=True %}
{% endfor %} {% endblock %} {% block extra_script %} {% endblock %}