{% load i18n %} {% if object_list %}
  • {% trans "Search results found for" %} "{{ request.GET.q }}"
  • {% for result in object_list %}
  • {{ result.title }}

    {% if result.search_text %}

    {{ result.search_text|linebreaks|truncatechars_html:400 }}

    {% endif %} {% if result.description %}

    {% trans 'Description: ' %}{{ result.description }}

    {% endif %} {% blocktrans %}Go to page >>{% endblocktrans %}
  • {% endfor %} {% else %}
  • {% trans "No results found for" %} "{{ request.GET.q }}"
  • {% endif %}