2016-09-18 10:40:55 +00:00
|
|
|
{% extends "symposion/schedule/public_base.html" %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
{% load cache %}
|
2016-09-18 10:40:55 +00:00
|
|
|
{% load lca2017_tags %}
|
2015-10-16 17:53:02 +00:00
|
|
|
{% load sitetree %}
|
|
|
|
|
|
|
|
{% block head_title %}Presentation Listing{% endblock %}
|
|
|
|
|
2016-09-18 10:40:55 +00:00
|
|
|
{% block header_title %}{{ schedule.section.name }} List{% endblock %}
|
|
|
|
{% block header_paragraph %}{{ schedule.header_paragraph.text }}{% endblock%}
|
|
|
|
{% block header_inset_image %}{% illustration "lavender.svg" %}{% endblock %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %}
|
|
|
|
|
2016-09-18 10:40:55 +00:00
|
|
|
{% block content %}
|
|
|
|
{% cache 600 "schedule-list" schedule.section.name %}
|
|
|
|
<ul>
|
|
|
|
{% for presentation in presentations %}
|
|
|
|
<li>
|
|
|
|
<a href="{% url "schedule_presentation_detail" presentation.pk %}">{{ presentation.title }}</a> {{ presentation.proposal.kind }} <em>by</em>
|
|
|
|
{{ presentation.speakers|join:", " }}
|
|
|
|
{% if presentation.slot %}
|
|
|
|
({{ presentation.slot.day.date|date:"l" }}
|
|
|
|
{{ presentation.slot.start}}–{{ presentation.slot.end }}
|
|
|
|
in
|
|
|
|
{{ presentation.slot.rooms|join:", " }})
|
|
|
|
{% endif %}
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endcache %}
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endblock %}
|