{% extends "base.html" %} {% load i18n utility_tags %} {% block content %}

{% trans "Search" %}

{{ form.as_p }}

{% if query %}

{% trans "Results" %}

{% for result in page.object_list %}

{{ result.object.title }}

{% empty %}

{% trans "No results found." %}

{% endfor %} {% if page.has_previous or page.has_next %} {% endif %} {% endif %} {% endblock %}