{% extends "base.html" %} {% load i18n %} {% load catalogue_tags pagination_tags %} {% block titleextra %}{% trans "Search" %}{% endblock %} {% block bodyid %}tagged-object-list{% endblock %} {% block body %}

{% trans "Search" %}

    {% for result in results %}
  1. {{result.book.pretty_title}} (id: {{result.book_id}}, score: {{result.score}})

      {% for hit in result.process_hits %}
    • {% if hit.fragment %} Idź do fragmentu
      Tagi/Motywy: {% for tag in hit.themes %}{{tag.name}} {% endfor %}
      {% endif %} {% for snip in hit.snippets %} {{snip|safe}}
      {% endfor %}
    • {% endfor %}
  2. {% empty %}

    No results.

    {% endfor %}
{% comment %}

{% trans "More than one result matching the criteria found." %}

{% endcomment %} {% endblock %}