{% extends "oscar/catalogue/browse.html" %} {% load currency_filters %} {% load basket_tags %} {% load promotion_tags %} {% load product_tags %} {% load category_tags %} {% load i18n %} {% block header %}
{% if category.image %} {{ summary }} {% endif %}

{{ summary }}

{% if category.description %}

{{ category.description|safe|truncatechars:250 }}

{% endif %}
{% endblock %} {% block column_left %}
{% category_tree as tree_categories %}

{% trans "Browse" %}

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

{% trans "No products found." %}

{% endif %} {% endblock content %}