diff --git a/pinaxcon/templates/symposion/schedule/schedule_conference.html b/pinaxcon/templates/symposion/schedule/schedule_conference.html new file mode 100644 index 0000000000000000000000000000000000000000..777a001d6663e98804cec7ba8b82db195ecb46be --- /dev/null +++ b/pinaxcon/templates/symposion/schedule/schedule_conference.html @@ -0,0 +1,31 @@ +{% extends "site_base.html" %} + +{% load i18n %} +{% load pinax_boxes_tags %} +{% load cache %} + +{% block head_title %}Conference Schedule{% endblock %} + +{% block body_class %}full{% endblock %} + +{% block right %} +{% endblock %} + +{% block body_outer %} +
+

Conference Schedule

+ {% block breadcrumbs %}{% endblock %} +
+ {% box "schedule_top" %} + + {% for section in sections %} + {% cache 600 "schedule-table" section.schedule.section %} + {% for timetable in section.days %} +

{{ section.schedule.section.name }} — {{ timetable.day.date }}

+ {% include "symposion/schedule/_grid.html" %} + {% endfor %} + {% endcache %} + {% endfor %} + + {% box "schedule_bottom" %} +{% endblock %}