{% extends "base.html" %} {% block title %}Cart — KiwiCrib{% endblock %} {% block content %}
Your cart is empty.
{% else %}Product | Qty | Unit Price | Total |
---|---|---|---|
{{ item.product.name }}
{% if item.options %}
|
{{ item.quantity }} | ${{ item.unit_price }} | ${{ item.total_price }} |
Cart Total | ${{ cart.total_price }} |