{% extends "schedule/base.html" %} {% block extra_head %} {% endblock %} {% block subnav %} List of Accepted Talks and Panels | Tutorial Schedule | List of Accepted Posters {% endblock %} {% block body %}

Accepted Talks and Panels

E
= EXTREME PyCon
I
= Invited
{% for talk in talks %}
{{ talk.title }}
{{ talk.get_audience_level_display }} {{ talk.get_session_type_display }} by {{ talk.speaker }} {% if talk.additional_speakers.all %} with {{ talk.additional_speakers.all|join:", " }} {% endif %}
{% if talk.extreme_pycon %}
E
{% endif %} {% if talk.invited %}
I
{% endif %}
{% empty %}

No accepted talks or panels yet.

{% endfor %} {% endblock %}