{% load i18n %} {% load lfs_tags %} {% for cart_item in cart_items %} {% endfor %}
{% trans 'Product' %} {% trans 'Quantity' %} {% trans 'Price' %} {% trans 'Included VAT' %} {% trans 'Total' %}
{{cart_item.product.get_name}} {{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}}