4b92c19d26b7b64bce79a82faf5fb29dfa2c08c3
[wolnelektury.git] / wolnelektury / templates / catalogue / book_searched.html
1 {% extends "catalogue/book_short.html" %}
2 {% load i18n %}
3
4
5 {% block box-class %}search-result{% endblock %}
6
7 {% block right-column %}
8 <div class="snippets">
9   {% for hit in hits %}
10   {% if hit.snippets %}
11   <p>In text:</p>
12   <div class="snippet-text"><a href="{% url book_text book.slug %}#f{{hit.section_number}}">{{hit.snippets.0|safe}}</a></div>
13   {% else %}
14   {% if hit.fragment %}
15   <div class="snippet-text">
16     <p>{% trans "In fragment" %}
17       {% if hit.themes_hit %}{% trans ", for themes:" %}{% for t in hit.themes_hit %}{{t.name}} {% endfor %}{% endif %}
18     </p>
19     <a href="{{hit.fragment.get_absolute_url}}">{{hit.fragment.short_text|safe}}</a>
20   </div>
21   {% endif %}
22   {% endif %}
23   {% endfor %}
24 </div>
25
26 {% endblock %}
27