{% extends 'theme/base.html' %} {% load static i18n %} {% block main %} {% include 'components/generic/navbar.html' %} {% load i18n %}
{% csrf_token %}

{% translate 'Resumen del pedido' %}

{% for item in items %}
{{ item.product.name }}
{{ item.quantity }}x

{{ item.product.price.price_with_tax }} €

{{ item.product.name }}
{% csrf_token %}
{% endfor %} {% if items.count == 0 %}

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

{% translate 'Volver a inicio' %}

{% endif %}

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

{% for address in shipping_addresses %} {% endfor %}

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

{% for address in billing_addresses %} {% endfor %}

{% 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 }} €
{% endblock %}