X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6280673f35e13e75e81c5b7821bd2a44a1831eab..357027375ff8867f42ca34bcbfb5a78b5b185fc3:/apps/catalogue/templates/catalogue/search_multiple_hits.html diff --git a/apps/catalogue/templates/catalogue/search_multiple_hits.html b/apps/catalogue/templates/catalogue/search_multiple_hits.html deleted file mode 100644 index d1e1dedf7..000000000 --- a/apps/catalogue/templates/catalogue/search_multiple_hits.html +++ /dev/null @@ -1,129 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} -{% load pagination_tags %} -{% load inline_tag_list from catalogue_tags %} -{% load book_searched from search_tags %} -{% load ssi_include from ssify %} - -{% block titleextra %}{% trans "Search" %}{% endblock %} - -{% block bodyid %}tagged-object-list{% endblock %} - -{% block body %} - {% if did_you_mean %} - {% trans "Did you mean" %} {{did_you_mean|lower}}? - {% endif %} - -
- {% if tags.author %} -
-
{% trans "Authors" %}:
-
- {% inline_tag_list tags.author %} -
-
- {% endif %} - {% if tags.kind %} -
-
{% trans "Kinds" %}:
-
- {% inline_tag_list tags.kind %} -
-
- {% endif %} - {% if tags.genre %} -
-
{% trans "Genres" %}:
-
- {% inline_tag_list tags.genre %} -
-
- {% endif %} - {% if tags.epoch %} -
-
{% trans "Epochs" %}:
-
- {% inline_tag_list tags.epoch %} -
-
- {% endif %} -
- - {% if results.title %} -
-
-

{% trans "Results by title" %}

-
-
-
-
    - {% for result in results.title %}
  1. - {% ssi_include 'catalogue_book_short' pk=result.book.pk %} -
  2. {% endfor %} -
-
- {% endif %} - - {% if results.author %} -
-
-

{% trans "Results by authors" %}

-
-
-
-
    - {% for author in results.author %}
  1. {% ssi_include 'catalogue_book_short' pk=author.book.pk %}
  2. {% endfor %} -
-
- {% endif %} - - {% if results.translator %} -
-
-

{% trans "Results by translators" %}

-
-
-
-
    - {% for translator in results.translator %}
  1. {% ssi_include 'catalogue_book_short' pk=translator.book.pk %}
  2. {% endfor %} -
-
- {% endif %} - - {% if results.content %} -
-
-

{% trans "Results in text" %}

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

{% trans "Other results" %}

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