{% extends "layout_2_col.html" %} {% load url from future %} {% load currency_filters %} {% load thumbnail %} {% load product_tags %} {% load i18n %} {% block title %} "{{ query }}" | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block column_left %} {% if has_facets %}

{% trans "Refine your search" %}

{% for field, data in facet_data.items %} {% if data.results %} {% include 'search/partials/facet.html' with name=data.name items=data.results %} {% endif %} {% endfor %}
{% endif %} {% endblock %} {% block headertext %} {% blocktrans with q=query %} Products matching "{{ q }}" {% endblocktrans %} {% endblock %} {% block content %} {% if suggestion %} {% trans 'Did you mean' %} {{ suggestion }}? {% endif %} {% if page.object_list %}
{% include "search/partials/pagination.html" %}
    {% for result in page.object_list %}
  1. {% render_product result.object %}
  2. {% endfor %}
{% include "search/partials/pagination.html" %}
{% else %}

{% trans 'No search results found.' %}

{% endif %} {% endblock %}