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

Checkout

{% if stock_warnings %}
Stock issue: {% for w in stock_warnings %}

{{ w }}

{% endfor %}

Please return to your cart and remove or adjust out-of-stock items before continuing.

{% endif %} {% if errors %}
{% for err in errors %}

{{ err }}

{% endfor %}
{% endif %}
{% csrf_token %}

Delivery Details

Your payment is held securely until you confirm delivery
Secured by Paystack · Funds held securely · Released after delivery is confirmed

Order Summary

{% for item in items %}
{% if item.product.primary_image_url %} {{ item.product.name }} {% else %}
Img
{% endif %}
{{ item.product.name }}
{{ item.product.vendor.store_name }} · Qty: {{ item.quantity }}
{% if not item.product.in_stock %}
Out of stock
{% endif %}
{% if item.product.in_stock %} {{ item.product.currency }} {{ item.subtotal }} {% else %} Unavailable {% endif %}
{% endfor %}
{% for vendor_row in vendor_breakdown %}
{{ vendor_row.vendor_name }} itemsGHS {{ vendor_row.items_subtotal }}
{{ vendor_row.vendor_name }} deliveryGHS {{ vendor_row.delivery_fee }}
{% endfor %}
Items SubtotalGHS {{ items_subtotal }}
Delivery TotalGHS {{ delivery_total }}
Secure Payment FeeIncluded
TotalGHS {{ grand_total }}
{% endblock %}