{% if query %}
{% if speaker_results %}
{% trans 'Speakers' %}
-
{% for result in speaker_results %}
- {{ result.highlighted.0|striptags_highlight }} {% endfor %}
{% blocktrans %}Mentions of “{{ query }}” in speeches{% endblocktrans %}
-
{% for result in page.object_list %}
{% if result.model_name == 'speech' %}
{% include 'speeches/speech.html' with speech=result.object highlight=result.highlighted.0 %}
{% elif result.model_name == 'section' %}
{% include 'search/section_item.html' with section=result.object highlight=result.highlighted.0 %}
{% endif %}
{% empty %}
- {% trans 'No results found' %} {% endfor %}