documentation
[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     <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
11         <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
12     </form>
13
14     <div id="results">
15       <ol>
16       {% for result in results %}
17       <li>
18         <p><a href="{{result.book.get_absolute_url}}">{{result.book.pretty_title}}</a> (id: {{result.book_id}}, score: {{result.score}})</p>
19         <ul>
20           {% for hit in result.process_hits %}
21           <li>
22             {% if hit.fragment %}
23             <div style="">Tagi/Motywy: {% for tag in hit.themes %}{{tag.name}} {% endfor %}</div>
24             {% endif %}
25             {% for snip in hit.snippets %}
26               {{snip|safe}}<br/>
27             {% endfor %}
28           </li>
29           {% endfor %}
30
31         </ul>
32       </li>
33       {% empty %}
34       <p>No results.</p>
35       {% endfor %}
36       </ol>
37     </div>
38
39
40 {% comment %}
41     <div id="books-list">
42         <p>{% trans "More than one result matching the criteria found." %}</p>
43         <ul class='matches'>
44         {% for match, link, type in results %}
45           <li>{% trans type %}: <a href='{{ link }}'>
46             {% ifequal type "book" %}
47                 {% book_title match %}
48             {% else %}
49                 {{ match.name }}
50             {% endifequal %}
51           </a></li>
52         {% endfor %}
53         </ul>
54     </div>
55 {% endcomment %}
56
57     <div id="set-window">
58         <div class="header"><a href="#" class="jqmClose">{% trans "Close" %}</a></div>
59         <div class="target">
60             <p><img src="{{ STATIC_URL }}img/indicator.gif" alt="*"/> {% trans "Loading" %}</p>
61         </div>
62     </div>
63 {% endblock %}