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

{{ promotion.name }}

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

{{ product.title }}

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

{% trans "No rating" %}

{% endif %} {% endwith %} {% endblock product_review %}
{% if product.is_group %}

{% trans "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 %}

{% trans "Not available" %}

{% endif %} {% endif %}

{{ promotion.description }}