1 {% extends "base.html" %}
6 <div class="l-section">
7 <div class="l-author__header">
8 <h1><span>{% trans "Wynik wyszukiwania dla:" %}</span> {{ query }}</h1>
12 <form class="c-form j-form-auto">
13 <div class="c-form__inline-radio">
14 {% trans "format" %}: {{ filters.format }}
16 <div class="c-form__controls-row">
17 <label class="c-form__control">
18 <span>{% trans "język" %}:</span>
21 <label class="c-form__control">
22 <span>{% trans "epoka" %}:</span>
25 <label class="c-form__control">
26 <span>{% trans "gatunek" %}</span>
30 <div class="c-form__inline-radio">
31 {% trans "kategoria" %}:
32 {{ filters.category }}
35 <button type="submit" class="c-form__hidden-submit">{% trans "wyślij" %}</button>
38 {% if not hasresults %}
39 <p class="l-change-pop show">
40 {% trans "Brak wyników." %}
44 {% if results.author %}
45 <div class="l-container">
46 <h2 class="header">{% trans "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">{% trans "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">{% trans "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">{% trans "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/book_box.html' %}
118 <div class="l-container">
119 <h2 class="header">{% trans "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/book_box.html' %}
130 {% if results.snippet %}
131 <div class="l-container">
132 <h2 class="header">{% trans "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">{% trans "Kolekcje" %}</h2>
154 <div class="c-search-result-collection">
155 {% for collection in results.collection %}
156 {% include 'catalogue/collection_box.html' %}
162 {% if results.pdauthor or results.pdbook %}
163 <div class="l-container">
164 <div class="c-search-result-pd">
165 <h2>{% trans "Domena publiczna?" %}</h2>
167 {% blocktrans trimmed %}
168 Dzieła tych autorów przejdą do zasobów domeny publicznej i będą mogły
169 być publikowane bez żadnych ograniczeń.
170 Dowiedz się, dlaczego biblioteki internetowe nie mogą udostępniać dzieł tego autora.
174 {% for tag in results.pdauthor %}
175 <div><a href="{{ tag.get_absolute_url }}">
176 <strong>{{ tag }}</strong>
179 {% blocktrans trimmed %}
180 Dzieła tego autora są w domenie publicznej i czekają na publikację.
183 {% blocktrans trimmed with year=tag.goes_to_pd %}
184 Dzieła tego autora będą mogły być publikowane bez ograniczeń w roku <em>{{ year }}</em>.
188 {% blocktrans trimmed %}
189 Dzieła tego autora są objęte prawem autorskim.
194 {% for book in results.pdbook %}
195 <div><a href="{{ book.get_absolute_url }}">
196 <strong>{{ book }}</strong>
199 {% blocktrans trimmed %}
200 Ten utwór jest w domenie publicznej i czeka na publikację.
203 {% blocktrans trimmed with year=tag.goes_to_pd %}
204 Ten utwór będzie mógł być publikowany bez ograniczeń w roku <em>{{ year }}</em>.
208 {% blocktrans trimmed %}
209 Ten utwór nie jest jeszcze w domenie publicznej.