symposion_app/symposion/templates/schedule/schedule_list.html

52 lines
1.5 KiB
HTML
Raw Normal View History

2012-08-31 05:50:00 +00:00
{% extends "site_base.html" %}
{% load i18n %}
2012-12-20 06:52:45 +00:00
{% load cache %}
{% load sitetree %}
2012-08-31 05:50:00 +00:00
{% block head_title %}Presentation Listing{% endblock %}
2012-09-20 01:17:36 +00:00
{% block extra_head %}
<style>
.presentation {
2012-12-20 06:52:45 +00:00
2012-09-20 01:17:36 +00:00
}
.presentation h3 {
line-height: 1.1em;
font-weight: bold;
}
.presentation h4 {
2012-12-20 06:52:45 +00:00
2012-09-20 01:17:36 +00:00
}
.presentation p {
margin-bottom: 0.5em;
2012-09-20 01:17:36 +00:00
line-height: 1.2em;
}
</style>
{% endblock %}
2012-12-20 06:52:45 +00:00
{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %}
2012-08-31 05:50:00 +00:00
{% block body %}
2012-12-20 06:52:45 +00:00
<h2>Accepted {{ schedule.section.name }}</h2>
{% cache 600 "schedule-list" schedule.section.name %}
{% for presentation in presentations %}
<div class="row">
<div class="span8 presentation well">
<h3><a href="{% url schedule_presentation_detail presentation.pk %}">{{ presentation.title }}</a></h3>
2013-07-03 20:08:05 +00:00
<h4>{{ presentation.speakers|join:", " }}</h4>
2012-12-20 06:52:45 +00:00
{{ presentation.description }}
{% if presentation.slot %}
<h4>
{{ presentation.slot.day.date|date:"l" }}
{{ presentation.slot.start}}&ndash;{{ presentation.slot.end }}
in
{{ presentation.slot.rooms|join:", " }}
</h4>
{% endif %}
</div>
2012-08-31 05:50:00 +00:00
</div>
2012-12-20 06:52:45 +00:00
{% endfor %}
{% endcache %}
2012-08-31 05:50:00 +00:00
{% endblock %}