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

{% for talk in talks %}

{{ quotation_open }}{{ talk.title }}{{ quotation_close }} {{ talk.display_speaker_names }} · {{ talk.submission_type }} {% if request.event.is_multilingual %}· {{ talk.get_content_locale_display }}{% endif %}

{{ 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 %}