{% load i18n lfs_tags %} {# Voucher #}

{% trans "Voucher code" %}

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

{% trans 'Your cart' %}

{% for cart_item in cart.items %} {% 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 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}} {{cart_item.get_price|currency}} ({{cart_item.get_tax|currency}}) {{cart_item.get_price|currency}}
{% trans "Voucher" %} 1 - {{ voucher_value|currency }} ({{ voucher_tax|currency }}) - {{ voucher_value|currency }}
{% trans 'Shipping' %} ({{selected_shipping_method.name}}) 1 {{shipping_price|currency}} {{shipping_price|currency}}
{% trans 'Payment' %} ({{selected_payment_method.name}}) 1 {{payment_price|currency}} {{payment_price|currency}}
{% trans 'Total' %}: {{cart_price|currency}}
{% trans 'Inclusive VAT' %}: {{cart_tax|currency}}