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

{% for talk in talks %}

»{{ talk.title }}« {{ talk.display_speaker_names }}; {{ talk.submission_type }}

{{ talk.abstract|rich_text|truncatechars_html:300 }}

{% if not forloop.last %}
{% endif %}
{% empty %} {% if search %}{% blocktrans trimmed %} No talk matches your search. {% endblocktrans %}{% endif %} {% endfor %} {% endblock %}