{% extends "utility_page.html" %} {% load i18n %} {% load cache %} {% load lca2018_tags %} {% block head_title %}Conference Schedule{% endblock %} {% block header_title %}Conference Schedule{% endblock %} {% block body_class %}bg-primary text-secondary{% endblock body_class %} {% block right %} {% endblock %} {% block navbar %}{% include 'nav.html' with color='green' %}{% endblock %} {% block main_class %}container-fluid{% endblock %} {% block content %}

Schedule

Wednesday 23 January 2019

{% for section in sections %} {% for timetable in section.days %}
{% cache 180 cache-schedule timetable.day.date %} {% include "symposion/schedule/_grid.html" %} {% endcache %}
{% cache 180 cache-schedule-mobile timetable.day.date %} {% include "symposion/schedule/_mobile.html" %} {% endcache %}
{% endfor %} {% endfor %}
{% endblock %} {%block footer_class %}footer-no-margin{% endblock %} {% block scripts_extra %} {{ block.super }} {% endblock %}