{% extends "base.html" %} {% load static %} {% block title %}ACA — Your Cart{% endblock %} {% block extra_css %} {% endblock %} {% block body %}
Back to Chat ACA

Your Cart

{{ items|length }} item{{ items|length|pluralize }}

{% if items %}
{% for item in items %}
{% if item.product.primary_image_url %} {{ item.product.name }} {% else %}
No Image
{% endif %}
{{ item.product.name }}
{{ item.product.vendor.store_name }}
{% if not item.product.in_stock %}
This item is out of stock and cannot be purchased
{% elif item.quantity > item.product.quantity %}
Only {{ item.product.quantity }} unit(s) available
{% endif %}
{% if item.product.in_stock %}
{{ item.quantity }}
{% endif %}
{% if not item.product.in_stock %} Out of Stock {% else %} {{ item.product.currency }} {{ item.subtotal }} {% endif %}
{% endfor %}
{% for vendor_row in vendor_breakdown %}
{{ vendor_row.vendor_name }} items GHS {{ vendor_row.items_subtotal }}
{{ vendor_row.vendor_name }} delivery GHS {{ vendor_row.delivery_fee }}
{% endfor %}
Items SubtotalGHS {{ items_subtotal }}
Delivery TotalGHS {{ delivery_total }}
TotalGHS {{ grand_total }}
{% else %}

Your cart is empty

Chat with our AI to discover products and add them to your cart.

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