symposion_app/symposion/templates/schedule/schedule_detail.html

38 lines
1 KiB
HTML
Raw Normal View History

{% extends "site_base.html" %}
{% load i18n %}
{% load bootstrap_tags %}
2012-09-28 23:36:42 +00:00
{% load boxes_tags %}
2012-12-20 06:52:45 +00:00
{% load cache %}
{% load sitetree %}
{% block head_title %}Conference Schedule{% endblock %}
{% block body_class %}full{% endblock %}
{% block right %}
{% endblock %}
{% block body_outer %}
<div class="row">
<div class="span12">
2012-12-20 06:52:45 +00:00
<div class="page-head">
<h1>{{ schedule.section }} Schedule</h1>
{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %}
</div>
</div>
<div class="span12">
2013-01-29 11:03:49 +00:00
{% box "schedule_top_"|add:schedule.section|slugify %}
2012-09-28 23:36:42 +00:00
2012-12-20 06:52:45 +00:00
{% cache 600 "schedule-table" schedule.section %}
{% for timetable in days %}
<h3>{{ timetable.day.date }}</h3>
{% include "schedule/_grid.html" %}
{% endfor %}
{% endcache %}
{% box "schedule_bottom" %}
</div>
</div>
{% endblock %}