bump librarian version
[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="books-list">
13         <p>{% trans "More than one result matching the criteria found." %}</p>
14         <ul class='matches'>
15         {% for match, link, type in results %}
16           <li>{% trans type %}: <a href='{{ link }}'>
17             {% ifequal type "book" %}
18                 {% book_title match %}
19             {% else %}
20                 {{ match.name }}
21             {% endifequal %}
22           </a></li>
23         {% endfor %}
24         </ul>
25     </div>
26
27 {% endblock %}