{% extends "haystack/base.html" %} {% load i18n %} {% block head_title %}{{ _('Search') }} | {{ block.super }}{% endblock %} {% block content %}

Search

{{ form.as_table }}
 
{% if query %}

Results

{% for result in page.object_list %}

{{ result.object.title }}

{% empty %}

{{ _('No results found.') }}

{% endfor %} {% endif %}
{% endblock %}