{% extends "zinnia/entry_list.html" %} {% load i18n zinnia %} {% block title %}{% blocktrans %}Search results for '{{ pattern }}'{% endblocktrans %}{% endblock title %} {% block meta-description %}{% blocktrans %}Search results for '{{ pattern }}'{% endblocktrans %}{% endblock meta-description %} {% block link %} {{ block.super }} {% if not error %} {% endif %} {% endblock link %} {% block body-class %}{{ block.super }} search {% if error %}search-error{% elif object_list %}search-results{% else %}search-no-results{% endif %}{% endblock body-class %} {% block content-title %}

{% blocktrans %}Search results for '{{ pattern }}'{% endblocktrans %}

{% if error %}

{{ error }}

{% else %}

{% blocktrans %}RSS feed of search results for '{{ pattern }}'{% endblocktrans %}

{% endif %} {% if object_list %}

{% blocktrans count entry_count=paginator.count %}{{ entry_count }} entry found{% plural %}{{ entry_count }} entries found{% endblocktrans %}

{% endif %} {% endblock content-title %} {% block content-loop %} {% if not error %} {% for object in object_list %} {% include object.content_template with object_content=object.html_preview continue_reading=1 %} {% empty %}

{% trans "Nothing found." %}

{% endfor %} {% endif %} {% endblock content-loop %} {% block content-related %} {% endblock content-related %}