{% extends "base.html" %} {% block title %}Shopping Cart - Golden Uniforms{% endblock %} {% block content %}

Shopping Cart

{% if cart_items %}

{{ cart_items|length }} item{{ 's' if cart_items|length != 1 else '' }} in your cart

{% endif %}
{% if cart_items %}
{% for item in cart_items %}
{% if item.product.image_url %} {{ item.product.name }} {% else %}
{% endif %}
{{ item.product.name }}

{{ item.product.category_ref.name }}

{% if item.variant %}

{{ item.variant.color }}

{% endif %}

KES {{ "%.2f"|format(item.product.price) }}


{% endfor %}
Order Summary
Total: KES {{ "%.2f"|format(total) }}
Proceed to Checkout
{% else %}

Your cart is empty

Add some products to get started!

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