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

Checkout

{% if not cart %}

Your cart is empty. Return to cart.

{% else %} {% for item in cart %} {% endfor %}
Product Qty Unit Price Total
{{ item.product.name }} {{ item.quantity }} ${{ item.unit_price }} ${{ item.total_price }}
Cart Total ${{ cart.total_price }}
{% csrf_token %}

(Payment integration pending — orders will be created as "new" status.)

{% endif %} {% endblock %}