{% extends 'base.html' %} {% block content %}
{% if cart_items %}
{% for item in cart_items %} {% endfor %}
Product Price Quantity Subtotal Actions
{% if item.product.image %} {{ item.product.name }} {% else %} 📷 {% endif %}
{{ item.product.name }}
${{ item.product.price }}
{{ item.quantity }}
${{ item.subtotal }}
{% csrf_token %}
Total: ${{ total_price }}
{% csrf_token %}
{% else %}

Your cart is empty

Looks like you haven't added any products to your cart yet.

Start Shopping
{% endif %}
{% endblock %}