{% extends 'base.html' %} {% load i18n %} {% block title %}{{ block.super }} – {% trans "Search" %}{% endblock %} {% block content %}

{% trans 'Search results' %}

{% if query %} {% for result in page.object_list %} {% if forloop.first %}
    {% endif %} {% with result_template=result.app_label|add:"-results.html" %} {% include "search/"|add:result_template %} {% endwith %} {% if forloop.last %}
{% endif %} {% empty %}

{% trans "No results found." %}

{% endfor %} {% if page.has_previous or page.has_next %}
{% if page.has_previous %}{% endif %}« Previous{% if page.has_previous %}{% endif %} | {% if page.has_next %}{% endif %}Next »{% if page.has_next %}{% endif %}
{% endif %} {% endif %} {% endblock %}