{% load currency_filters %} {% load i18n %} {% if product.is_group %}

{% blocktrans with product.min_variant_price_incl_tax|currency as price %}From {{ price }}{% endblocktrans %}

{% else %}

{{ product.stockrecord.price_incl_tax|currency }}

{% if product.is_available_to_buy %}

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

{% else %}

{% trans "Not available" %}

{% endif %} {% endif %}