{% extends "base.html" %} {% load i18n %} {% block body_class %}search{% endblock %} {% block container %} {% block searchfilter %} {% endblock %} {% block alerts %} {% if is_tainted_and_or %}
{% trans "The query you specified didn't return any results. Results shown are for the separate parts of the query." %}
{% endif %} {% if not page.object_list %}
{% trans "No results found" %}
{% endif %} {% endblock %} {% block suggestion %} {% if suggestion and not page.object_list %}
{% trans "Did you mean" %} {{ suggestion }}?
{% endif %} {% endblock %} {% block searchresults %}
{% for result in page.object_list %} {{ result }} {% endfor %}
{% endblock %} {% endblock %}