{% extends "base.html" %} {% block main %}

Wynik wyszukiwania dla: {{ query }}

format: {{ filters.format }}
kategoria: {{ filters.category }}
{{ filters.q }}
{% if not hasresults %}

Brak wyników.

{% endif %} {% if results.author %}

Autorzy

{% endif %} {% if results.theme %}

Motywy

{% endif %} {% if results.genre %}

Gatunki

{% endif %} {% if results.book %}

Książki

{% for book in results.book %} {% include 'catalogue/book_box.html' %} {% endfor %}
{% endif %} {% if results.art %}

Obrazy

{% for book in results.art %} {% include 'catalogue/book_box.html' %} {% endfor %}
{% endif %} {% if results.snippet %}

W treści

{% for book, snippets in results.snippet.items %}
{% for author in book.authors %} {{ author }} {% endfor %} {{ book.title }} {% for f in snippets %} {{ f.headline|safe }} {% endfor %}
{% endfor %}
{% endif %} {% if results.collection %}

Kolekcje

{% for collection in results.collection %} {% include 'catalogue/collection_box.html' %} {% endfor %}
{% endif %} {% if results.pdauthor or results.pdbook %}
{% endif %}
{% endblock %}