{% extends 'oscar/search/results.html' %} {% load i18n %} {% load currency_filters thumbnail product_tags %} {% block content %}
{# Render other search params as hidden inputs #} {% for value in search_form.selected_facets %} {% endfor %} {% if paginator.count %} {% if paginator.num_pages > 1 %} {% blocktrans with start=page_obj.start_index end=page_obj.end_index num_results=paginator.count %} Found {{ num_results }} results, showing {{ start }} to {{ end }}. {% endblocktrans %} {% else %} {% blocktrans count num_results=paginator.count %} Found {{ num_results }} result. {% plural %} Found {{ num_results }} results. {% endblocktrans %} {% endif %}
{% include "oscar/partials/form_field.html" with field=search_form.sort_by %}
{% else %}

{% trans "Found 0 results." %} {% if suggestion %} {% url 'search:search' as search_url %} {% blocktrans %} Did you mean "{{ suggestion }}"? {% endblocktrans %} {% endif %}

{% endif %}
{% block searchheading %}{% endblock %} {% if page_obj.object_list %}
    {% for result in page_obj.object_list %}
  1. {% render_product result %}
  2. {% endfor %}
{% include "oscar/partials/pagination.html" with page_obj=page_obj %}
{% endif %} {% endblock %} {% block column_left %} {% if has_facets %}

{% trans "Refine by" %}

{% for field, data in facet_data.items %} {% if data.results %} {% include 'oscar/search/partials/facet.html' with name=data.name items=data.results %} {% endif %} {% endfor %}
{% endif %} {% endblock %}