{% extends "shop/base.html" %} {% load static %} {% block title %} Your shopping cart {% endblock %} {% block content %}

Your shopping cart

{% for item in cart %} {% with product=item.product %} {% endwith %} {% endfor %}
Image Product Quantity Remove Unit price Price
{{ product.name }}
{{ item.update_quantity_form.quantity }} {{ item.update_quantity_form.override }} {% csrf_token %}
{% csrf_token %}
${{ item.price }} ${{ item.total_price }}
Total ${{ cart.get_total_price }}

Continue shopping Checkout

{% endblock %}