X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/462d84ea8718cd3ca1112fe11c2120a0f20f475f..c26ab6ee15974c1133a6d08c459b51199185f25f:/wolnelektury/templates/catalogue/search_multiple_hits.html diff --git a/wolnelektury/templates/catalogue/search_multiple_hits.html b/wolnelektury/templates/catalogue/search_multiple_hits.html deleted file mode 100644 index 0a7dc1cf1..000000000 --- a/wolnelektury/templates/catalogue/search_multiple_hits.html +++ /dev/null @@ -1,91 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} -{% load search_tags pagination_tags %} - -{% block titleextra %}{% trans "Search" %}{% endblock %} - -{% block bodyid %}tagged-object-list{% endblock %} - -{% block body %} - {% if did_you_mean %} - {% trans "Dod you mean" %} {{did_you_mean|lower}}? - {% endif %} - - - - {% if results.author %} -
-
-

{% trans "Results by authors" %}

-
-
-
-
    - {% for author in results.author %} -
  1. - {{author.book.short_html}} -
  2. - {% endfor %} -
-
- {% endif %} - - {% if results.title %} -
-
-

{% trans "Results by title" %}

-
-
-
-
    - {% for result in results.title %} -
  1. - {{result.book.short_html}} -
  2. - {% endfor %} -
-
- {% endif %} - - {% if results.content %} - {% for result in results.content %} -
-
-

{% trans "Results in text" %}

-
-
-
-
    - {% for result in results.title %} -
  1. - {% book_searched result %} -
  2. - {% endfor %} -
-
- {% endfor %} - {% endif %} - - {% if results.other %} - {% for result in results.other %} -
-
-

{% trans "Other results" %}

-
-
-
-
    - {% for result in results.other %} -
  1. - {% book_searched result %} -
  2. - {% endfor %} -
-
- {% endfor %} - {% endif %} - - - - -{% endblock %}