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

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