{% extends "layout.html" %} {% load currency_filters %} {% load basket_tags %} {% block header %}

{{ summary }}

{% endblock header %} {% block content %} {% if products.count %}
    {% for product in products %}
  1. {% with product.images.all as image %} {% endwith %} {{ product.get_title }}
    {% if product.is_group %} From {{ product.min_variant_price_incl_tax|currency }} {% else %} {% if product.has_stockrecord %} {{ product.stockrecord.price_incl_tax|currency }}
    {{ product.stockrecord.availability }} {% else %} Not available {% endif %} {% endif %} {% basket_form basket product as basket_form %}
    {% csrf_token %} {{ basket_form.as_p }}
  2. {% endfor %}
{% if page_obj %} {% endif %} {% else %}

No products found.

{% endif %} {% endblock content %}