fe4514009d5531b664b6b6c433e6b4690e534cbd
[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 title %}{% trans "Searching in" %} WolneLektury.pl{% endblock %}
6
7 {% block bodyid %}tagged-object-list{% endblock %}
8
9 {% block body %}
10     <h1>{% title_from_tags tags %}</h1>
11     {% breadcrumbs tags %}
12     
13     <div id="books-list">
14         <p>{% trans "More than one result matching the criteria found." %}</p>
15                 <ul class='matches'>
16         {% for match, link, type in results %}
17             <li><a href='{{ link }}'>{{ match.name }}</a> ({{ type }})</li>
18         {% endfor %}
19                 </ul>
20     </div>
21
22     <div id="set-window">
23         <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
24         <div class="target">
25             <p><img src="{{ STATIC_URL }}img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
26         </div>
27     </div>
28 {% endblock %}