diff --git a/pinaxcon/templates/symposion/schedule/schedule_edit.html b/pinaxcon/templates/symposion/schedule/schedule_edit.html new file mode 100644 index 0000000000000000000000000000000000000000..a30e02922f1f92d35ed7415074ddd0cc66103090 --- /dev/null +++ b/pinaxcon/templates/symposion/schedule/schedule_edit.html @@ -0,0 +1,58 @@ +{% extends "site_base.html" %} + +{% load i18n %} + +{% block head_title %}Conference Schedule Edit{% endblock %} + +{% block body_class %}full{% endblock %} + +{% block right %} +{% endblock %} + +{% block extra_head %} + +{% endblock %} + +{% block body_outer %} +

Schedule Edit

+ + {% for timetable in days %} +

{{ timetable.day.date }}

+ {% include "symposion/schedule/_edit_grid.html" %} + {% endfor %} +
{% csrf_token %} + {{ form.as_p }} + + +
+ +{% endblock %} + +{% block extra_script %} + + +{% endblock %}