{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load migdal_tags %} {% load events_tags %} {% block "body" %}

{% trans "Search results" %}

{% for result in page.object_list %} {% if result.model_name == "entry" %} {% entry_short result.object %} {% elif result.model_name == "event" %} {% event_short result.object %} {% endif %} {% empty %}

{% trans "No results found." %}

{# Show some example queries to run, maybe query syntax, something else? #} {% endfor %} {% if page.has_previous or page.has_next %}

{% if page.has_previous %} {% trans "previous" %} {% endif %} {% if page.has_next %} {% trans "next" %} {% endif %} {% endif %} {% endblock "body" %}