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

Shopping Cart

{% if cart_items %} {% for item in cart_items %} {% endfor %}
Product Price Quantity Total
{{ item.product.name }} ${{ item.product.price }} {{ item.quantity }} ${{ item.total }}
Total: ${{ cart_total }}
Checkout
{% else %}

Your cart is empty.

{% endif %}
{% endblock %}