{% extends "oscar/layout_2_col.html" %} {% load basket_tags %} {% load category_tags %} {% load product_tags %} {% load i18n %} {% block title %} {% if summary %}{{ summary }} |{% endif %} {{ block.super }} {% endblock %} {% block headertext %}{{ summary }}{% endblock %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block column_left %} {% category_tree as tree_categories %} {% if tree_categories %}

{% trans "Show results for" %}

{% endif %} {% 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 %} {% block content %}
{# Render other search params as hidden inputs #} {% for value in selected_facets %} {% endfor %} {% if paginator.count %} {% if paginator.num_pages > 1 %} {% blocktrans with start=page_obj.start_index end=page_obj.end_index count num_results=paginator.count %} {{ num_results }} result - showing {{ start }} to {{ end }}. {% plural %} {{ num_results }} results - showing {{ start }} to {{ end }}. {% endblocktrans %} {% else %} {% blocktrans count num_results=paginator.count %} {{ num_results }} result. {% plural %} {{ num_results }} results. {% endblocktrans %} {% endif %} {% if form %}
{% include "oscar/partials/form_field.html" with field=form.sort_by style='horizontal' %}
{% endif %} {% else %}

{% trans "0 results." %}

{% endif %}
{% if products %}
    {% for product in products %}
  1. {% render_product product %}
  2. {% endfor %}
{% include "oscar/partials/pagination.html" %}
{% else %}

{% trans "No products found." %}

{% endif %} {% endblock content %} {% block onbodyload %} {{ block.super }} oscar.search.init(); {% endblock %}