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

{% trans 'Your Cart' %}

{% for cart_item in cart.items %} {% endfor %}
{% 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.product.get_price|currency }} ({{ cart_item.product.get_tax|currency }}) {{ cart_item.get_price|currency }} X
{% 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 %}