search fixes
[wolnelektury.git] / wolnelektury / templates / catalogue / search_multiple_hits.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags search_tags pagination_tags %}
4
5 {% block titleextra %}{% trans "Search" %}{% endblock %}
6
7 {% block bodyid %}tagged-object-list{% endblock %}
8
9 {% block body %}
10     {% if did_you_mean %}
11       <span class="did_you_mean">{% trans "Dod you mean" %} <a href="{% url search %}?q={{did_you_mean|urlencode}}">{{did_you_mean|lower}}</a></b>?</span>
12     {% endif %}
13     <!-- tu pójdą trafienia w tagi: Autorzy - z description oraz motywy i rodzaje (z book_count) -->
14
15
16     {% if results.author %}
17     <div class="book-list-header">
18       <div class="book-box-inner">
19         <p>{% trans "Results by authors" %}</p>
20       </div>
21     </div>
22     <div>
23       <ol class="work-list">
24         {% for author in results.author %}
25         <li class="work-item">
26           {% book_short author.book %}
27         </li>
28         {% endfor %}
29       </ol>
30     </div>
31     {% endif %}
32
33     {% if results.title %}
34     <div class="book-list-header">
35       <div class="book-box-inner">
36       <p>{% trans "Results by title" %}</p>
37       </div>
38     </div>
39     <div>
40       <ol class="work-list">
41         {% for result in results.title %}
42         <li class="work-item">
43           {% book_short result.book %}
44         </li>
45         {% endfor %}
46       </ol>
47     </div>
48     {% endif %}
49
50     {% if results.content %}
51     {% for result in results.content %}
52     <div class="book-list-header">
53       <div class="book-box-inner">
54       <p>{% trans "Results in text" %}</p>
55       </div>
56     </div>
57     <div>
58       <ol class="work-list">
59         {% for result in results.title %}
60         <li class="work-item">
61           {% book_searched result %}
62         </li>
63         {% endfor %}
64       </ol>
65     </div>
66     {% endfor %}
67     {% endif %}
68
69     {% if results.other %}
70     {% for result in results.other %}
71     <div class="book-list-header">
72       <div class="book-box-inner">
73         <p>{% trans "Other results" %}</p>
74       </div>
75     </div>
76     <div>
77       <ol class="work-list">
78         {% for result in results.other %}
79         <li class="work-item">
80           {% book_searched result %}
81         </li>
82         {% endfor %}
83       </ol>
84     </div>
85     {% endfor %}
86     {% endif %}
87
88
89
90
91 {% endblock %}