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

{% trans 'Search' %}

{{ form.as_p }}
{% if query %} {% for result in page.object_list %} {% post_view result.object %} {% empty %}

{% trans 'No results found.' %}

{% endfor %} {% if page.has_previous or page.has_next %}
{% if page.has_previous %}{% endif %}« {% trans 'Previous' %}{% if page.has_previous %}{% endif %} {% if page.has_next %}{% endif %}{% trans 'Next' %} » {% if page.has_next %}{% endif %}
{% endif %} {% endif %} {% endblock %}