{% load i18n lfs_tags %} {% if cart_items %}

{% trans "Voucher" %}

{% trans "If you have voucher code, please enter it here" %} {% 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 'Net Price' %} {% trans 'VAT' %} {% trans 'Total' %}
{% if cart_item.product.get_image.image %} {{ cart_item.product.get_name }} {% endif %} {{ cart_item.product.get_name }} {% include "lfs/catalog/products/_product_properties.html" with product=cart_item.product configurable_properties=cart_item.obj.get_properties %} {% if cart_item.product.get_unit %} {{ cart_item.product.get_unit }} {% endif %} {% if cart_item.product.get_active_packing_unit %} ({{ cart_item.obj|packages }} {{ cart_item.product.get_packing_info.1 }}) {% endif %} {{ cart_item.product_price_net|currency:request }} {{ cart_item.product_tax|currency:request }} {{ cart_item.product_price_gross|currency:request }} X
{{ discount.name }} 1 - {{ discount.price_net|currency:request }} - {{ discount.get_tax|currency:request }} - {{ discount.price_gross|currency:request }}
{% trans "Voucher" %} 1 - {{ voucher_value|currency:request }} ({{ voucher_tax|currency:request }}) - {{ voucher_value|currency:request }}
{% trans 'Country' %}:
{% trans 'Shipping' %}: {{ shipping_costs.price_net|currency:request }} {{ shipping_costs.tax|currency:request }} {{ shipping_costs.price_gross|currency:request }}
{% trans 'Payment' %}: {{ payment_price|currency:request }}
{% trans 'Total' %}: {{ cart_price|currency:request }}
{% trans 'Inclusive VAT' %}: {{ cart_tax|currency:request }}
{% trans 'Total delivery time' %}: {{ max_delivery_time }}
{% else %}

{% trans 'Your Cart is empty' %}

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