{% extends "oscar/layout.html" %} {% load basket_tags %} {% load category_tags %} {% load i18n %} {% load product_tags %} {% block title %}{{ range.name }} | {{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block headertext %}{{ range.name }}{% endblock %} {% block content %} {% if range.description %}{{ range.description|safe }}{% 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 %}