{% extends "django_classified/_base.html" %} {% load i18n bootstrap %} {% block title %} {% if form.q.value %}{% trans "Search results for query" %} "{{ form.q.value }}" {% else %} {% trans "Search" %}{% endif %} {% endblock title %} {% block body %}

{% trans "Search" %}

{{ form|bootstrap }} {% if object_list|length %} {% include 'django_classified/form_pagination.inc.html' %} {% endif %}

{% if object_list|length %}

{% blocktrans %}Search results ({{ paginator.count }} items found):{% endblocktrans %}

{% include "django_classified/item_list.inc.html" with item=object %} {% else %}

{% trans "Not found" %}

{% endif %}
{% endblock %}