{% extends "site_base.html" %} {% load i18n %} {% load bootstrap_tags %} {% load boxes_tags %} {% load cache %} {% block head_title %}{% trans "Conference Schedule" %}{% endblock %} {% block page_title %} {% trans "Conference Schedule" %} {% endblock %} {% block page_content %}
{% box "schedule_top" %} {% for section in sections %} {% cache 600 "schedule-table" section.schedule.section %} {% for timetable in section.days %}

{{ timetable.day.date }}

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