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

{% for speaker in speakers %}

{{ speaker.user.get_display_name }}

{% for talk in speaker.talks %} »{{ talk.title }}« {% if not forloop.last %} | {% endif %} {% endfor %} {% if not forloop.last %}


{% endif %}
{% empty %} {% if search %}{% blocktrans trimmed %} No speaker matches your search. {% endblocktrans %}{% endif %} {% endfor %} {% endblock %}