{% load i18n %} {% load lfs_tags %}
{% trans 'Product' %} | {% trans 'Quantity' %} | {% trans 'Price' %} | {% trans 'Included VAT' %} | {% trans 'Total' %} | |
---|---|---|---|---|---|
|
{{cart_item.product.get_name}}
{% for option in cart_item.product.get_options %}
{% if option.property.display_on_product %}
{{option.property.name}} : {{option.value|option_name}} {{option.property.unit|safe}}
{% endif %}
{% endfor %}
|
{{cart_item.amount|quantity}} | {{cart_item.product.get_price|currency}} | ({{cart_item.product.get_tax|currency}}) | {{cart_item.get_price|currency}} |
{% trans 'Total' %}: {{total|currency}} |