X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9362aac47564f9b03a3fcad625b312e85dfdf6db..c26ab6ee15974c1133a6d08c459b51199185f25f:/wolnelektury/templates/newsearch/search.html diff --git a/wolnelektury/templates/newsearch/search.html b/wolnelektury/templates/newsearch/search.html deleted file mode 100644 index 4dfc8581f..000000000 --- a/wolnelektury/templates/newsearch/search.html +++ /dev/null @@ -1,45 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} -{% load catalogue_tags %} - -{% block title %}Search{% endblock %} - -{% block metadescription %}{% endblock %} - -{% block bodyid %}newsearch{% endblock %} - -{% block body %} -

Search

-
-

- - -

-
- -
-
    - {% for result in results %} -
  1. -

    {{result.book.pretty_title}} (id: {{result.book.id}}, score: {{result.score}})

    -
      - {% for part in result.parts %} - {% if part.header %} -
    • W {{part.header}} nr {{part.position}}
    • - {% else %} - {% if part.fragment %} -
    • -
      {% for tag in part.fragment.tags %}{{tag.name}} {% endfor %}
      - {{part.fragment.text|safe}}
    • - {% endif %} - {% endif %} - {% endfor %} -
    -
  2. - {% empty %} -

    No results.

    - {% endfor %} -
-
- -{% endblock %}