{% extends "site_base.html" %} {% load compress %} {% load i18n %} {% load review_tags %} {% load thumbnail %} {% block head_title %}{{ speaker.name }}{% endblock %} {% block extra_head %} {% include "markedit/includes/markedit-js.html" %} {% compress js %} {% endcompress %} {% endblock %} {% block body %}
{% if speaker.photo %} {{ speaker.name }} {% else %}   {% endif %}
{% if speaker.user == request.user or request.user.is_staff %} {% trans "Edit" %} {% endif %}

{{ speaker.name }}

{{ speaker.biography|bleach|safe }}

{% trans "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 %}

{% trans "No presentations. This page is only visible to staff until there is a presentation." %}

{% endfor %}

{% endblock %}