1 {% extends "base.html" %}
 
   3 {% load catalogue_tags pagination_tags %}
 
   5 {% block titleextra %}{% trans "Search" %}{% endblock %}
 
   7 {% block bodyid %}tagged-object-list{% endblock %}
 
  10     <h1>{% trans "Search" %}</h1>
 
  14       {% for result in results %}
 
  16         <p><a href="{{result.book.get_absolute_url}}">{{result.book.pretty_title}}</a> (id: {{result.book_id}}, score: {{result.score}})</p>
 
  18           {% for hit in result.hits %}
 
  21             <a href="{{hit.fragment.get_absolute_url}}">Idź do fragmentu</a>
 
  22             <div style="">Tagi/Motywy: {% for tag in hit.themes %}{{tag.name}} {% endfor %}</div>
 
  23             {# snippets or short html? #}
 
  25              {% for snip in hit.snippets %}
 
  29              {{hit.fragment.short_text|safe}}
 
  35               {% for snip in hit.snippets %}
 
  39                [section matched but no snippets :-(]
 
  56         <p>{% trans "More than one result matching the criteria found." %}</p>
 
  58         {% for match, link, type in results %}
 
  59           <li>{% trans type %}: <a href='{{ link }}'>
 
  60             {% ifequal type "book" %}
 
  61                 {% book_title match %}