{% load i18n %} {% load lfs_tags %} {% if cart.items %}

{% trans "Voucher" %}

{% if voucher_number and voucher_message %} {{ voucher_message }} {% endif %}

{% trans 'Your Cart' %}

{% for cart_item in cart.items %} {% endfor %} {% for discount in discounts %} {% endfor %} {% if display_voucher %} {% endif %}
{% trans 'Product' %} {% trans 'Amount' %} {% trans 'Price' %} {% trans 'Included 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.get_properties %}
{{ property.title }}: {{ property.value }} {{ property.unit|safe }} {% if property.display_price %} ({{ property.price|currency }}) {% endif %}
{% endfor %} {% endif %}
{% if cart_item.product.unit %} {{ cart_item.product.unit }} {% endif %} {% if cart_item.product.active_packing_unit %} ({{ cart_item|packages }} {{ cart_item.product.packing_unit_unit }}) {% endif %} {{ cart_item.product.get_price|currency }} {# {{ cart_item.product.get_price|currency }} #} {% if cart_item.product.price_unit %} / {{ cart_item.product.price_unit }} {% endif %} ({{ cart_item.get_tax|currency }}) {{ cart_item.get_price|currency }} X
{{ discount.name }} 1 {% if discount.tax %} ({{ discount.tax|currency }}) {% endif %} - {{ discount.price|currency }}
{% trans "Voucher" %} 1 - {{ voucher_value|currency }} ({{ voucher_tax|currency }}) - {{ voucher_value|currency }}
{% trans 'Country' %}:
{% trans 'Shipping' %}: {{ shipping_price|currency }}
{% trans 'Payment' %}: {{ payment_price|currency }}
{% trans 'Total' %}: {{ cart_price|currency }}
{% trans 'Inclusive VAT' %}: {{ cart_tax|currency }}
{% trans 'Total delivery time' %}: {{ max_delivery_time }}
{% else %}

{% trans 'Your Cart is empty' %}

{% trans 'Go on shopping' %} {% endif %}