{% extends 'pybb/base.html' %} {% load i18n %} {% block content %}

{% trans 'Search' %}

{{form.q}}  
{% if query %}
{% for result in page.object_list %}

Temat: {{ result.object.topic.name }}
{% autoescape off %} {% for snippet in result.highlighted.text %} {{snippet}}{% if not forloop.last %} ... {% endif %} {% endfor %} {% endautoescape %}

{% empty %}

Brak wyników.

{% endfor %} {% if page.has_previous or page.has_next %}
{% if page.has_previous %}{% endif %}« Poprzednie{% if page.has_previous %}{% endif %} | {% if page.has_next %}{% endif %}Następne »{% if page.has_next %}{% endif %}
{% endif %} {% endif %} {% endblock %}