{% extends "base.html" %} {% block content %}

Cart

{% for product in cart.products.all %} {% endfor %} {% endblock %}
# Product Name Price
{{ forloop.counter }} {{ product.title }}{% include "carts/form.html" with object=product in_cart=True %} {{ product.price }}
Subtotal {{ cart.subtotal }}
Total {{ cart.total }}
Checkout