{% extends "tienda/base.html" %} {% load static %} {% load vat_filters %} {% block head %} {% endblock %} {% block content %}
{% csrf_token %} {% if cart_items %}
1) Selecciona la dirección de envío
{% if addresses %}
{% else %}
No tienes direcciones de envío creadas. Crear dirección
{% endif %}
{% for item in cart_items %} {% endfor %}
Producto Precio (sin IVA) Cantidad Subtotal (con IVA)
{{ item.product.name }} {{ item.product.price|format_price }}€ {{ item.quantity }} {{ item.get_subtotal_with_vat|format_price }}€
Subtotal: {{ cart.get_total|format_price }}€
IVA (21%): +{{ cart.get_vat_amount|format_price }}€
Total: {{ cart.get_total_with_vat|format_price }}€

2) Selecciona tu método de pago

{% else %}
Tu carrito está vacío.
{% endif %}
{% endblock %}