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