{% load currency_filters %} {% load basket_tags %} {% load thumbnail %}

{{ promotion.name }}

{% with image=product.primary_image %} {% thumbnail image.original "400x400" upscale=False as thumb %} {{ product.get_title }} {% endthumbnail %} {% endwith %}

{{ product.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|truncatewords:2 }}

{% else %}

Not available

{% endif %} {% endif %}
{% block product_review %} {% with product.reviews.all as reviews %} {% if reviews %}
    {% for review in reviews %}
  • {{ review.score }}
  • {% endfor %}
{% else %}

No Rating

{% endif %} {% endwith %} {% endblock product_review %}

{{ promotion.description }}