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

{% endif %} {% if product.is_available_to_buy %} {% if product.is_group %}

{% trans "Available" %}

{% else %}

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

{% endif %} {% else %}

{% trans "Not available" %}

{% endif %}