{% extends "agenda/base.html" %} {% load compress %} {% load i18n %} {% load rich_text %} {% load static %} {% block agenda_content %} {% include "agenda/header_row.html" %}

{% for speaker in speakers %}
{% if speaker.user.avatar_url and request.event.cfp.request_avatar %} {% else %} {% endif %}
{{ speaker.user.get_display_name }}
{{ speaker.biography|default:''|rich_text_without_links }}
    {% for talk in speaker.talks %}
  • {{ talk.title }}
  • {% endfor %}
{% endfor %}
{% endblock %}