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.process_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>
 
  24             {% for snip in hit.snippets %}
 
  41         <p>{% trans "More than one result matching the criteria found." %}</p>
 
  43         {% for match, link, type in results %}
 
  44           <li>{% trans type %}: <a href='{{ link }}'>
 
  45             {% ifequal type "book" %}
 
  46                 {% book_title match %}