diff --git a/pinaxcon/templates/symposion/schedule/presentation_detail.html b/pinaxcon/templates/symposion/schedule/presentation_detail.html new file mode 100644 index 0000000000000000000000000000000000000000..4813f2ea5e5b123a8f6187a85bb0785fdae3a8aa --- /dev/null +++ b/pinaxcon/templates/symposion/schedule/presentation_detail.html @@ -0,0 +1,35 @@ +{% extends "site_base.html" %} + +{% load sitetree %} + +{% block head_title %}Presentation: {{ presentation.title }}{% endblock %} + +{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} + +{% block body %} + {% if presentation.slot %} +

+ {{ presentation.slot.day.date|date:"l" }} + {{ presentation.slot.start}}–{{ presentation.slot.end }} +

+ {% endif %} +

{{ presentation.title }}

+ +

+ {% for speaker in presentation.speakers %} + {{ speaker }}{% if not forloop.last %}, {% endif %}{% endfor %} +

+ +
+
Audience level:
+
{{ presentation.proposal.get_audience_level_display }}
+
+ +

Description

+ +
{{ presentation.description }}
+ +

Abstract

+ +
{{ presentation.abstract|safe }}
+{% endblock %}