Use outside packages.
[prawokultury.git] / migdal / templates / search / search.html
diff --git a/migdal/templates/search/search.html b/migdal/templates/search/search.html
deleted file mode 100644 (file)
index f38a4e6..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-{% extends "base.html" %}
-{% load url from future %}
-{% load i18n %}
-{% load migdal_tags %}
-
-
-{% block "body" %}
-<h1>{% trans "Search results" %}</h1>
-
-{% for result in page.object_list %}
-{% entry_short result %}
-{% empty %}
-<p>{% trans "No results found." %}</p>
-{% endfor %}
-
-{% if page.has_previous or page.has_next %}
-<div>
-  {% if page.has_previous %}<a href="?q={{ query }}&amp;page={{ page.previous_page_number }}">{% endif %}{% trans "&laquo; Previous" %}{% if page.has_previous %}</a>{% endif %}
-  |
-  {% if page.has_next %}<a href="?q={{ query }}&amp;page={{ page.next_page_number }}">{% endif %}{% trans "Next &raquo;" %}{% if page.has_next %}</a>{% endif %}
-</div>
-{% else %}
-{# Show some example queries to run, maybe query syntax, something else? #}
-{% endif %}
-{% endblock "body" %}