2016-09-03 09:22:47 +00:00
|
|
|
{% extends "site_base_wagtail.html" %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
{% load cache %}
|
|
|
|
{% load sitetree %}
|
|
|
|
|
|
|
|
{% block head_title %}Presentation Listing{% endblock %}
|
|
|
|
|
|
|
|
{% block extra_head %}
|
|
|
|
<style>
|
|
|
|
.presentation {
|
|
|
|
|
|
|
|
}
|
|
|
|
.presentation h3 {
|
|
|
|
line-height: 1.1em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.presentation h4 {
|
|
|
|
|
|
|
|
}
|
|
|
|
.presentation p {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
line-height: 1.2em;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2016-09-03 09:22:47 +00:00
|
|
|
<div class="l-content-page">
|
|
|
|
<div class="l-content-page--richtext">
|
|
|
|
<div class="rich-text">
|
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
<h2>Accepted {{ schedule.section.name }}</h2>
|
|
|
|
{% cache 600 "schedule-list" schedule.section.name %}
|
|
|
|
{% for presentation in presentations %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-8 presentation well">
|
|
|
|
<h3><a href="{% url "schedule_presentation_detail" presentation.pk %}">{{ presentation.title }}</a></h3>
|
|
|
|
<h4>{{ presentation.speakers|join:", " }}</h4>
|
|
|
|
{{ presentation.description }}
|
|
|
|
{% if presentation.slot %}
|
|
|
|
<h4>
|
|
|
|
{{ presentation.slot.day.date|date:"l" }}
|
|
|
|
{{ presentation.slot.start}}–{{ presentation.slot.end }}
|
|
|
|
in
|
|
|
|
{{ presentation.slot.rooms|join:", " }}
|
|
|
|
</h4>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endcache %}
|
2016-09-03 09:22:47 +00:00
|
|
|
</div></div></div>
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endblock %}
|