{% load currency_filters %} {% load thumbnail %} {% load i18n %}
{% with image=product.primary_image %} {% thumbnail image.original "400x400" upscale=False as thumb %} {{ product.get_title }} {% endthumbnail %} {% endwith %}
{% block product_review %} {% with product.reviews.all as reviews %} {% if reviews %} {% else %}

{% trans "No Rating" %}

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

{{ product.get_title|truncatewords:7 }}

{% if product.has_stockrecord %}

{{ product.stockrecord.price_incl_tax|currency }}

{{ product.stockrecord.availability|truncatewords:2 }}

{% else %} {% if product.is_group %}

{% trans "From" %} {{ product.min_variant_price_incl_tax|currency }}

{% else %}

{% trans "Not available" %}

{% endif %} {% endif %} {% include "catalogue/partials/add_to_basket_form_compact.html" %}