{% extends "site_base.html" %} {% load i18n %} {% load thumbnail %} {% block page_title %}{% endblock %} {% block body %}
{% if speaker.photo %} {{ speaker.name }} {% endif %}
{% if speaker.user == request.user or request.user.is_staff %} Edit {% endif %}

{{ speaker.name }}

{{ speaker.biography|safe }}

Presentations

{% for presentation in speaker.presentations.all %}

{{ 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 %} {% comment %} {% block content %} {% if sessions %}

Presentations

{% for session in sessions %}
{{ session.slot.start|localtime:timezone|date:"F jS" }} {{ session.slot.start|localtime:timezone|date:"P" }} – {{ session.slot.end|localtime:timezone|date:"P" }}
{{ session.title }}
{% endfor %}
{% endif %} {% endblock %} {% endcomment %}