2012-09-21 02:54:17 +00:00
|
|
|
{% extends "site_base.html" %}
|
|
|
|
|
|
|
|
{% block head_title %}Presentation: {{ presentation.title }}{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
|
|
|
|
<h1>{{ presentation.title }}</h1>
|
|
|
|
|
|
|
|
<h2>
|
|
|
|
{% for speaker in presentation.speakers %}
|
2012-10-12 03:55:49 +00:00
|
|
|
<a href="{% url speaker_profile speaker.pk %}">{{ speaker }}</a>
|
2012-09-21 02:54:17 +00:00
|
|
|
{% if not forloop.last %}, {% endif %}{% endfor %}
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<dl class="dl-horizontal">
|
|
|
|
<dt>Audience level:</dt>
|
|
|
|
<dd style="margin-bottom: 0;">{{ presentation.proposal.get_audience_level_display }}</dd>
|
|
|
|
<dt>Track:</dt>
|
|
|
|
<dd>{{ presentation.proposal.track }}</dd>
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
{% if presentation.slot %}
|
|
|
|
<h2>
|
|
|
|
{{ presentation.slot.day.date|date:"l" }}
|
|
|
|
{{ presentation.slot.start}}–{{ presentation.slot.end }}
|
|
|
|
in
|
|
|
|
{{ presentation.slot.rooms|join:", " }}
|
|
|
|
</h2>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<h3>Description</h3>
|
|
|
|
|
|
|
|
<div class="description">{{ presentation.description }}</div>
|
|
|
|
|
|
|
|
<h3>Abstract</h3>
|
|
|
|
|
|
|
|
<div class="abstract">{{ presentation.abstract|safe }}</div>
|
|
|
|
{% endblock %}
|