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

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