{% extends "base.html" %} {% block title %}Cart — KiwiCrib{% endblock %} {% block content %}

Your Cart

{% if not cart %}

Your cart is empty.

{% else %} {% for item in cart %} {% endfor %}
Product Qty Unit Price Total
{{ item.product.name }} {% if item.options %}
    {% for key, val in item.options.items %}
  • {{ key|title }}: {{ val }}
  • {% endfor %}
{% endif %}
{{ item.quantity }} ${{ item.unit_price }} ${{ item.total_price }}
Cart Total ${{ cart.total_price }}
Proceed to Checkout
{% endif %} {% endblock %}