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