X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0a7090f11131631647db366ff87976407e788412..ea9d7d13a44a6ad6357b1af8c977c27753268521:/src/search/templates/search/results.html diff --git a/src/search/templates/search/results.html b/src/search/templates/search/results.html index c6ea3836d..625bb6591 100644 --- a/src/search/templates/search/results.html +++ b/src/search/templates/search/results.html @@ -35,24 +35,30 @@ + {% if not hasresults %} +

+ Brak wyników. +

+ {% endif %} + {% if results.author %} -
-

Autorzy

- -
+
+

Autorzy

+ +
{% endif %} {% if results.theme %} @@ -75,6 +81,26 @@ {% endif %} + {% if results.genre %} +
+

Gatunki

+ +
+ {% endif %} + {% if results.book %}

Książki

@@ -101,20 +127,22 @@
{% endif %} - {% if results.fragment or results.snippet %} + {% if results.snippet %}

W treści

- {% for f in results.snippet %} + {% for book, snippets in results.snippet.items %}
- {% for author in f.book.authors %} + {% for author in book.authors %} {{ author }} {% endfor %} - - {{ f.book.title }} - - - {{ f.headline|safe }} + + {{ book.title }} + {% for f in snippets %} + + {{ f.headline|safe }} + + {% endfor %}
{% endfor %}
@@ -126,13 +154,12 @@
{% for collection in results.collection %} {% include 'catalogue/2022/collection_box.html' %} - {% include 'catalogue/2022/collection_box.html' %} {% endfor %}
{% endif %} - {% if pd_authors %} + {% if results.pdauthor or results.pdbook %}

Domena publiczna?

@@ -142,10 +169,32 @@ Dowiedz się, dlaczego biblioteki internetowe nie mogą udostępniać dzieł tego autora.

- {% for tag in pd_authors %} + {% for tag in results.pdauthor %}
{{ tag }} - Dzieła tego autora będą mogły być publikowane bez ograniczeń w roku {{ tag.goes_to_pd }}. + {% if tag.death %} + {% if tag.in_pd %} + Dzieła tego autora są w domenie publicznej i czekają na publikację. + {% else %} + Dzieła tego autora będą mogły być publikowane bez ograniczeń w roku {{ tag.goes_to_pd }}. + {% endif %} + {% else %} + Dzieła tego autora są objęte prawem autorskim. + {% endif %} +
+ {% endfor %} + {% for book in results.pdbook %} +
+ {{ book }} + {% if book.pd %} + {% if book.in_pd %} + Ten utwór jest w domenie publicznej i czeka na publikację. + {% else %} + Ten utwór będzie mógł być publikowany bez ograniczeń w roku {{ book.pd }}. + {% endif %} + {% else %} + Ten utwór nie jest jeszcze w domenie publicznej. + {% endif %}
{% endfor %}