{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Cart Detail Page" %} {% endblock %} {% block content %}

{% trans "Your Shopping Cart" %}

{% for item in cart %} {% with product=item.product%} {% endwith %} {% endfor %}
Kai's Store
{{ product.name }}
{{ item.update_quantity_form.quantity }} {{ item.update_quantity_form.update }} {% csrf_token %}
{{ product.price }} {% trans "Remove" %} ${{ item.total_price }}
{% trans "Total" %} ${{ cart.get_total_price }}

Total 29.99

{% endblock %}