357491ce66a122b9871856a82e50664221332fdf
[wolnelektury.git] / src / catalogue / templates / catalogue / book_searched.html
1 {% spaceless %}
2
3 {% load i18n %}
4 {% load inline_tag_list from catalogue_tags %}
5 {% load ssi_include from ssify %}
6
7 <div class="search-result">
8
9 {% ssi_include 'catalogue_book_short' pk=book.pk %}
10
11 <div class="snippets">
12   {% for hit in hits %}
13   {% if hit.snippet %}
14   <div class="snippet-text"><a href="{% url 'book_text' book.slug %}#sec{{hit.section_number}}">{{hit.snippet|safe}}</a></div>
15   {% else %}
16   {% if hit.fragment %}
17   <div class="snippet-text">
18     {% if hit.themes_hit %}
19     {% inline_tag_list hit.themes_hit  %}
20     {% endif %}
21     <a href="{{hit.fragment.get_absolute_url}}">
22       {% if hit.snippet %}
23         {{hit.snippet|safe}}
24       {% else %}
25         {{hit.fragment.text|truncatewords_html:15|safe}}
26       {% endif %}
27     </a>
28   </div>
29   {% endif %}
30   {% endif %}
31   {% endfor %}
32 </div>
33
34 <div style="clear: right"></div>
35
36 </div>
37
38 {% endspaceless %}