{% load i18n %} {% load lfs_tags %} {% for cart_item in cart_items %} {% endfor %}
{% trans 'Product' %} {% trans 'Quantity' %} {% trans 'Net Price' %} {% trans 'VAT' %} {% trans 'Total' %}
{{ cart_item.product.get_name }} {{ cart_item.product.get_name }} {% for property in cart_item.product.get_variant_properties %}
{{ property.title }}: {{ property.value }} {{ property.unit|safe }}
{% endfor %} {% 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.obj.get_properties %}
{{ property.title }}: {{ property.value }} {{ property.unit|safe }} {% if property.display_price %} ({{ property.price|currency:request}}) {% endif %}
{% endfor %} {% endif %}
{{ cart_item.quantity }} {{ cart_item.product.unit }} {% if cart_item.product.active_packing_unit %} ({{ cart_item.obj|packages }} {{ cart_item.product.packing_unit_unit }}) {% endif %} {{ cart_item.product_price_net|currency:request}} {{ cart_item.product_tax|currency:request}} {{ cart_item.product_price_gross|currency:request}}
{% trans 'Total' %}: {{ total|currency:request}}