{% extends "symposion/schedule/base.html" %} {% load i18n %} {% load cache %} {% load lca2018_tags %} {% block head_title %}Conference Schedule{% endblock %} {% block page_title %}Conference Schedule{% endblock %} {% block content %}
{% for section in sections %} {% cache 600 "schedule-table" section.schedule.section %} {% for timetable in section.days %}

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

Conference times are in {{ settings.LCA_START|date:'T' }} (UTC{{ settings.LCA_START|date:'O' }}).

{% include "symposion/schedule/_grid.html" %}
{% include "symposion/schedule/_mobile.html" %}
{% endfor %} {% endcache %} {% endfor %}
{% endblock %} {% block scripts_extra %} {{ block.super }} {% endblock %}