2016-09-18 10:40:55 +00:00
|
|
|
{% extends "symposion/schedule/public_base.html" %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
{% load pinax_boxes_tags %}
|
|
|
|
{% load cache %}
|
2016-09-18 10:40:55 +00:00
|
|
|
{% load lca2017_tags %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% block head_title %}Conference Schedule{% endblock %}
|
2016-09-18 10:40:55 +00:00
|
|
|
{% block header_title %}Conference Schedule{% endblock %}
|
|
|
|
{% block header_paragraph %}{% header_paragraph "conference_schedule" %}{% endblock %}
|
|
|
|
{% block header_inset_image %}{% illustration "cradle.svg" %}{% endblock %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% block body_class %}full{% endblock %}
|
|
|
|
|
|
|
|
{% block right %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2016-12-10 06:11:40 +00:00
|
|
|
{% block content_base %}
|
2016-09-18 10:40:55 +00:00
|
|
|
|
|
|
|
<div class="page-head">
|
|
|
|
{% block breadcrumbs %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
|
2016-12-10 06:11:40 +00:00
|
|
|
<div class="panel panel__compact">
|
|
|
|
<div class="panel--content">
|
|
|
|
|
|
|
|
<div class="panel--tab-controls">
|
|
|
|
<div class="panel--tabs">
|
|
|
|
{% for section in sections %}
|
|
|
|
{% for timetable in section.days %}
|
|
|
|
<a data-tab-control="{{ timetable.day.date|date:"l"}}" class="panel--tab-switch {% if forloop.is_first and forloop.parentloop.is_first %}is-active{% endif %}">{{ timetable.day.date|date:"l"}}</a>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% for section in sections %}
|
|
|
|
{% cache 600 "schedule-table" section.schedule.section %}
|
|
|
|
{% for timetable in section.days %}
|
|
|
|
<div data-tab-content="{{ timetable.day.date|date:"l"}}" class="panel--tab-content is-active">
|
|
|
|
<h3>{{ section.schedule.section.name }} — {{ timetable.day.date|date:"l" }}, {{ timetable.day.date }}</h3>
|
|
|
|
{% include "symposion/schedule/_grid.html" %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endcache %}
|
2016-09-18 10:40:55 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
2016-12-10 06:11:40 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endblock %}
|