{% extends "tienda/base.html" %} {% load static %} {% load vat_filters %} {% block head %} {% endblock %} {% block content %}
{% csrf_token %} {% if cart_items %}
{% 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 }}€

Selecciona tu método de pago

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