{% extends "schedule/base.html" %} {% load timezone_filters %} {% block extra_head %} {% endblock %} {% block body %}

{{ presentation.title }}

{% if user.is_authenticated %} {% if presentation.bookmarked %}

unbookmark

{% else %}

bookmark

{% endif %} {% else %}

log in to bookmark this presentaton

{% endif %}
{% if presentation.extreme_pycon %}
E
{% endif %} {% if presentation.invited %}
I
{% endif %}
{{ presentation.get_audience_level_display }} / {{ presentation.get_presentation_type_display }}
{% for speaker in presentation.speakers %} {{ speaker }} {% if not forloop.last %}, {% endif %}{% endfor %}
{% if presentation.slot %}
{{ presentation.slot.start|localtime:timezone|date:"F jS" }} {{ presentation.slot.start|localtime:timezone|date:"P" }} – {{ presentation.slot.end|localtime:timezone|date:"P" }}
{% endif %}
{{ presentation.description }}

Abstract

{{ presentation.abstract_html|safe }}
{% endblock %} {% block extra_body %} {% endblock %}