{% load currency_filters %} {% load basket_tags %} {% load thumbnail %}
{% 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 %}

No Rating

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

{{ product.get_title|truncatewords:7 }}

{% if product.has_stockrecord %} {% if product.is_group %}

From {{ product.min_variant_price_incl_tax|currency }}

{% else %}

{{ product.stockrecord.price_incl_tax|currency }}

{% endif %}

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

{% else %}

Not available

{% endif %} {% basket_form basket product as basket_form single %}
{% csrf_token %} {{ basket_form.as_p }}