{% load i18n %}
{% csrf_token %}

{% translate 'Carrito' %}

{% for item in items %}
{{ item.product.name }}
{{ item.product.name }} {% if item.variant %}

{% for attribute_value in item.variant.attribute_values.all %}{{ attribute_value }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% endif %} {% csrf_token %}
{{ item.quantity }}x

{{ item.price.price_with_tax }}€

{% endfor %} {% if items.count == 0 %}

{% translate 'No hay nada en el carrito...' %}

{% translate 'Volver a inicio' %}
{% endif %}

{% translate 'Dirección de envío' %}

{% if user.is_anonymous %}
{% else %} {% endif %}

{% translate 'Dirección de facturación' %}

{% translate 'Opciones de envío' %}

{% for shipping_method in shipping_methods %}
{% endfor %}

{% translate 'Resumen del pedido' %}

{% translate 'Base imponible' %} {{ base_total }} €
{% translate 'Descuentos' %} -{{ savings }} €
{% translate 'Gastos de envío' %} {{ shipping_cost }} €
{% translate 'Impuestos' %} {{ tax_total }} €
{% translate 'Total' %} {{ total }} €