{% 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 %} {% if cart.coupon %} {% endif %}
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 }}
Subtotal ${{ cart.get_total_price|floatformat:2 }}
"{{ cart.coupon.code }}" coupon ({{ cart.coupon.discount }}% off) - ${{ cart.get_discount|floatformat:2 }}
Total ${{ cart.get_total_price_after_discount|floatformat:2 }}
{% if recommended_products %}

People who bought this also bought

{% for p in recommended_products %}

{{ p.name }}

{% endfor %}
{% endif %}

Apply a coupon:

{{ coupon_apply_form }} {% csrf_token %}

Continue shopping Checkout

{% endblock %}