{% extends "oscar/catalogue/browse.html" %} {% load display_tags %} {% load basket_tags %} {% load category_tags %} {% load product_tags %} {% load i18n %} {% load oxyan %} {% load ocyanjson %} {% load ocyan_thumbnail %} {% block content_wrapper %}
{% if category.image %} {% responsive_image category.image.file alt=category.name classes="background-image" %} {% endif %} {% block breadcrumb %} {% endblock %}
{% block facets %} {% if has_facets %} {% trans "Filter and sort" %} {% endif %} {% endblock %}
{% for value in selected_facets %} {% endfor %} {% if search_form %}
{% include "oscar/partials/form_field.html" with field=search_form.sort_by style='horizontal' %}
{% endif %}

{{paginator.count}} {% trans "Products" %}

{% block product_list %} {% block category_top %} {{ block.super }} {% endblock %}
{% if products %} {% for product in products %}
{% if forloop.counter > 2 %} {% render_product product %} {% else %} {% with notlazy=True %}{% render_product product %}{% endwith %} {% endif %}
{% endfor %} {% else %}

{% trans "No results" %}

{% endif %}
{% block category_bottom %} {{ block.super }} {% endblock %} {% include "oscar/partials/pagination.html" %} {% endblock %}
{% endblock %}