{% extends 'base.html' %} {% load i18n %} {% block title %} {% if query %} {% blocktrans %}Search results{% endblocktrans %} {% else %} {% blocktrans %}Search{% endblocktrans %} {% endif %} {% endblock %} {% block content %} {#
#} {% if query %} {% for result in page.object_list %}{% include "summary.search.part.html" %}
{% empty %}{% blocktrans %}No results found.{% endblocktrans %}
{% endfor %} {% if page.has_previous or page.has_next %} {% endif %} {% else %} {# Show some example queries to run, maybe query syntax, something else? #} {% endif %} {% endblock %}