Your Cart

{% if cart_items %}
{% for item in cart_items %}
{{ item.name }}
Quantity: {{ item.quantity }}
$ {{ item.price }}
{% endfor %}
Proceed to Order Summary {% else %}

Your cart is empty. Please add items to your cart.

{% endif %}