{% 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 %} {# Search URLs are an unbounded, thin-content space. Keep them out of the index #} {# but let crawlers follow through to the listings they surface. #} {% block meta_robots %}{% endblock meta_robots %} {% block body %}

{% trans "Search" %}

{% if object_list|length %}

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

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

{% trans "Not found" %}

{% endif %} {% endblock %}