{% 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 property in cart_item.product.get_displayed_properties %}
{{ property.title }}: {{ property.value }} {{ property.unit|safe }}
{% endfor %} {% if cart_item.product.is_configurable_product %} {% for property in cart_item.get_properties %}
{{ property.title }}: {{ property.value }} {{ property.unit|safe }} {% if property.display_price %} ({{ property.price|currency }}) {% endif %}
{% endfor %} {% endif %}
{{ cart_item.amount|quantity }} {{ cart_item.product.unit }} {% if cart_item.product.active_packing_unit %} ({{ cart_item|packages }} {{ cart_item.product.packing_unit_unit }}) {% endif %} {{ cart_item.product.get_price|currency }} {% if cart_item.product.price_unit %} / {{ cart_item.product.price_unit }} {% endif %} ({{ cart_item.product.get_tax|currency }}) {{ cart_item.get_price|currency }}
{% trans 'Total' %}: {{ total|currency }}