{% load i18n lfs_tags %}
{% sorting %}
{{ product.name }}
{{ product.obj.short_description|safe }}
{% if product.get_for_sale %}
{{ product.standard_price|currency }}
{{ product.for_sale_price|currency }}*
{% else %}
{{ product.price|currency }}*
{% endif %}
{% if product.price_unit %}
/ {{ product.price_unit }}
{% endif %}
{% if product.price_includes_tax %}
{% trans '*inc. VAT' %}
{% else %}
{% trans '*exc. VAT' %}
{% endif %}
|
{% endfor %}