From 0d2de61345c5d45b53f4dcd2e685b5c8c0133fd8 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Mon, 16 Oct 2017 16:50:49 -0700 Subject: [PATCH] Speaker photos --- .../schedule/presentation_detail.html | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pinaxcon/templates/symposion/schedule/presentation_detail.html diff --git a/pinaxcon/templates/symposion/schedule/presentation_detail.html b/pinaxcon/templates/symposion/schedule/presentation_detail.html new file mode 100644 index 0000000..9ab471e --- /dev/null +++ b/pinaxcon/templates/symposion/schedule/presentation_detail.html @@ -0,0 +1,33 @@ +{% extends "symposion/schedule/presentation_detail_.html" %} + +{% load thumbnail %} + +{% comment %} + Blocks you can override: + + - description (appears in lede) + - abstract + - speaker +{% endcomment %} + +{% block speaker %} +

{{ speaker.name }}

+ +
+
+
+ {{ speaker.biography_html|safe }} +
+ + {% if speaker.conferencespeaker.twitter_username %} + Twitter + {% endif %} +
+
+
+
+
+
+ +
+{% endblock %}