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

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

{% else %}

{% trans "Not available" %}

{% endif %} {% endif %}