diff --git a/pinaxcon/templates/symposion/speakers/speaker_profile.html b/pinaxcon/templates/symposion/speakers/speaker_profile.html new file mode 100644 index 0000000000000000000000000000000000000000..794f710e27bc7573045a7d445937769b59203197 --- /dev/null +++ b/pinaxcon/templates/symposion/speakers/speaker_profile.html @@ -0,0 +1,41 @@ +{% extends "site_base.html" %} + +{% load i18n %} +{% load thumbnail %} + + +{% block head_title %}{{ speaker.name }}{% endblock %} + +{% block body %} +
+
+ {% if speaker.photo %} + {{ speaker.name }} + {% else %} +   + {% endif %} +
+
+ {% if speaker.user == request.user or request.user.is_staff %} + Edit + {% endif %} +

{{ speaker.name }}

+
{{ speaker.biography|safe }}
+ +

Presentations

+ {% for presentation in presentations %} +

{{ presentation.title }}

+ {% if presentation.slot %} +

+ {{ presentation.slot.day.date|date:"l" }} + {{ presentation.slot.start}}–{{ presentation.slot.end }} + in + {{ presentation.slot.rooms|join:", " }} +

+ {% endif %} + {% empty %} +

No presentations. This page is only visible to staff until there is a presentation.

+ {% endfor %} +

+
+{% endblock %}