1 {% extends "2022/base.html" %}
6 <div class="l-section">
7 <div class="l-author__header">
8 <h1><span>Wynik wyszukiwania dla:</span> {{ query }}</h1>
12 <form class="c-form j-form-auto">
13 <div class="c-form__inline-radio">
14 format: {{ filters.format }}
16 <div class="c-form__controls-row">
17 <label class="c-form__control">
21 <label class="c-form__control">
25 <label class="c-form__control">
30 <div class="c-form__inline-radio">
32 {{ filters.category }}
35 <button type="submit" class="c-form__hidden-submit">wyślij</button>
38 {% if not hasresults %}
39 <p class="l-change-pop show">
44 {% if results.author %}
45 <div class="l-container">
46 <h2 class="header">Autorzy</h2>
47 <ul class="c-search-result c-search-result-author">
48 {% for tag in results.author %}
50 <a href="{{ tag.get_absolute_url }}">
53 <img src="{{ tag.photo.url }}">
64 {% if results.theme %}
65 <div class="l-container">
66 <h2 class="header">Motywy</h2>
67 <ul class="c-search-result">
68 {% for tag in results.theme %}
70 <a href="{{ tag.get_absolute_url }}">
73 <img src="{{ tag.photo.url }}">
84 {% if results.genre %}
85 <div class="l-container">
86 <h2 class="header">Gatunki</h2>
87 <ul class="c-search-result">
88 {% for tag in results.genre %}
90 <a href="{{ tag.get_absolute_url }}">
93 <img src="{{ tag.photo.url }}">
104 {% if results.book %}
105 <div class="l-container">
106 <h2 class="header">Książki</h2>
108 <div class="l-section l-section--col">
109 <div class="l-books__grid">
110 {% for book in results.book %}
111 {% include 'catalogue/2022/book_box.html' %}
118 <div class="l-container">
119 <h2 class="header">Obrazy</h2>
121 <div class="l-section l-section--col">
122 <div class="l-books__grid">
123 {% for book in results.art %}
124 {% include 'catalogue/2022/book_box.html' %}
130 {% if results.snippet %}
131 <div class="l-container">
132 <h2 class="header">W treści</h2>
133 {% for book, snippets in results.snippet.items %}
134 <div class="c-search-result-fragment">
135 {% for author in book.authors %}
136 <a class="c-search-result-fragment-author" href="{{ author.get_absolute_url }}">{{ author }}</a>
138 <a class="c-search-result-fragment-title" href="{{ book.get_absolute_url }}">
141 {% for f in snippets %}
142 <a class="c-search-result-fragment-text" href='{% url 'book_text' f.book.slug %}#sec{{ f.sec }}'>
143 {{ f.headline|safe }}
151 {% if results.collection %}
152 <div class="l-container">
153 <h2 class="header">Kolekcje</h2>
154 <div class="c-search-result-collection">
155 {% for collection in results.collection %}
156 {% include 'catalogue/2022/collection_box.html' %}
162 {% if results.pdauthor or results.pdbook %}
163 <div class="l-container">
164 <div class="c-search-result-pd">
165 <h2>Domena publiczna?</h2>
167 Dzieła tych autorów przejdą do zasobów domeny publicznej i będą mogły
168 być publikowane bez żadnych ograniczeń.
169 Dowiedz się, dlaczego biblioteki internetowe nie mogą udostępniać dzieł tego autora.
172 {% for tag in results.pdauthor %}
173 <div><a href="{{ tag.get_absolute_url }}">
174 <strong>{{ tag }}</strong>
177 Dzieła tego autora są w domenie publicznej i czekają na publikację.
179 Dzieła tego autora będą mogły być publikowane bez ograniczeń w roku <em>{{ tag.goes_to_pd }}</em>.
182 Dzieła tego autora są objęte prawem autorskim.
186 {% for book in results.pdbook %}
187 <div><a href="{{ book.get_absolute_url }}">
188 <strong>{{ book }}</strong>
191 Ten utwór jest w domenie publicznej i czeka na publikację.
193 Ten utwór będzie mógł być publikowany bez ograniczeń w roku <em>{{ book.pd }}</em>.
196 Ten utwór nie jest jeszcze w domenie publicznej.