X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/999340c55d5402900dd013ab5ced2413cd4f22f8..5af5cc14f6b2ecddcad714053e048e39d52ca02d:/migdal/templates/search/search.html diff --git a/migdal/templates/search/search.html b/migdal/templates/search/search.html index 6d7b9c7..84610ff 100644 --- a/migdal/templates/search/search.html +++ b/migdal/templates/search/search.html @@ -2,24 +2,31 @@ {% load url from future %} {% load i18n %} {% load migdal_tags %} +{% load events_tags %} {% block "body" %}

{% trans "Search results" %}

{% for result in page.object_list %} -{% entry_short result.object %} + {% 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 %}{% endif %}{% trans "« Previous" %}{% if page.has_previous %}{% endif %} - | - {% if page.has_next %}{% endif %}{% trans "Next »" %}{% if page.has_next %}{% endif %} -
-{% else %} -{# Show some example queries to run, maybe query syntax, something else? #} +

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