diff --git a/symposion/templates/schedule/schedule_detail.html b/symposion/templates/schedule/schedule_detail.html deleted file mode 100644 index 51f8ac51d6423eb4653dd7b37777e73b65112099..0000000000000000000000000000000000000000 --- a/symposion/templates/schedule/schedule_detail.html +++ /dev/null @@ -1,37 +0,0 @@ -{% extends "site_base.html" %} - -{% load i18n %} -{% load bootstrap_tags %} -{% load boxes_tags %} -{% load cache %} -{% load sitetree %} - -{% block head_title %}Conference Schedule{% endblock %} - -{% block body_class %}full{% endblock %} - -{% block right %} -{% endblock %} - -{% block body_outer %} -
-
-
-

{{ schedule.section }} Schedule

- {% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} -
-
-
- {% box "schedule_top_"|add:schedule.section.name|slugify %} - - {% cache 600 "schedule-table" schedule.section %} - {% for timetable in days %} -

{{ timetable.day.date }}

- {% include "schedule/_grid.html" %} - {% endfor %} - {% endcache %} - - {% box "schedule_bottom" %} -
-
-{% endblock %}