symposion_app/pinaxcon/templates/symposion/schedule/schedule_detail.html
Joel Addison 1022a42cf7 Styling for schedule
Update to Bootstrap 4 throughout.
Remove unused blocks and elements from past conferences.
Ensure schedule works in print mode.
2019-10-20 23:16:29 +10:00

29 lines
859 B
HTML

{% extends "site_base.html" %}
{% load i18n %}
{% load cache %}
{% load lca2018_tags %}
{% load sitetree %}
{% block head_title %}{{ schedule.section.name }} Schedule{% endblock %}
{% block page_title %}{{ schedule.section.name }} Schedule{% endblock%}
{% block content %}
{% cache 600 "schedule-detail-table" schedule.section %}
{% for timetable in days %}
<div class="row">
<div class="col-12">
<h2 class="my-4">
{{ timetable.day.date|date:"l" }}, {{ timetable.day.date }}
</h2>
<div class="table-responsive d-none d-md-block">
{% include "symposion/schedule/_grid.html" %}
</div>
<div class="mobile-schedule d-sm-block d-md-none">
{% include "symposion/schedule/_mobile.html" %}
</div>
</div>
</div>
{% endfor %}
{% endcache %}
{% endblock %}