merge search into pretty branch
[wolnelektury.git] / wolnelektury / templates / catalogue / search_multiple_hits.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags pagination_tags %}
4
5 {% block titleextra %}{% trans "Search" %}{% endblock %}
6
7 {% block bodyid %}tagged-object-list{% endblock %}
8
9 {% block body %}
10     <h1>{% trans "Search" %}</h1>
11
12     <div id="results">
13       <ol>
14       {% for result in results %}
15       <li>
16         <p><a href="{{result.book.get_absolute_url}}">{{result.book.pretty_title}}</a> (id: {{result.book_id}}, score: {{result.score}})</p>
17         <ul>
18           {% for hit in result.process_hits %}
19           <li>
20             {% if hit.fragment %}
21             <div style="">Tagi/Motywy: {% for tag in hit.themes %}{{tag.name}} {% endfor %}</div>
22             {% endif %}
23             {% for snip in hit.snippets %}
24               {{snip|safe}}<br/>
25             {% endfor %}
26           </li>
27           {% endfor %}
28
29         </ul>
30       </li>
31       {% empty %}
32       <p>No results.</p>
33       {% endfor %}
34       </ol>
35     </div>
36
37
38 {% comment %}
39     <div id="books-list">
40         <p>{% trans "More than one result matching the criteria found." %}</p>
41         <ul class='matches'>
42         {% for match, link, type in results %}
43           <li>{% trans type %}: <a href='{{ link }}'>
44             {% ifequal type "book" %}
45                 {% book_title match %}
46             {% else %}
47                 {{ match.name }}
48             {% endifequal %}
49           </a></li>
50         {% endfor %}
51         </ul>
52     </div>
53 {% endcomment %}
54
55 {% endblock %}