diff --git a/pinaxcon/templates/symposion/schedule/schedule_conference.html b/pinaxcon/templates/symposion/schedule/schedule_conference.html index e4f607790b3e776a2fe9324826792aeffb43ac00..7856a579e04f0f8b02ff0049e650943228428dbf 100644 --- a/pinaxcon/templates/symposion/schedule/schedule_conference.html +++ b/pinaxcon/templates/symposion/schedule/schedule_conference.html @@ -28,20 +28,21 @@
{% for section in sections %} {% for timetable in section.days %} - {% if day_switch == None %} - {{ timetable.day.date|date:"l"}} - {% else %} - {{ timetable.day.date|date:"l"}} - {% endif %} + + {{ timetable.day.date|date:"l"}} + {% endfor %} {% endfor %}
{% for section in sections %} - {% cache 600 "schedule-table" section.schedule.section %} + {% cache 600 "schedule-table" section.schedule.section %} {% for timetable in section.days %} -
+

{{ section.schedule.section.name }} — {{ timetable.day.date|date:"l" }}, {{ timetable.day.date }}

{% include "symposion/schedule/_grid.html" %}
@@ -52,3 +53,76 @@
{% endblock %} + +{% block scripts_extra %} + + {{ block.super }} +{% endblock %}