{% extends 'base.html' %} {% load widget_tweaks %} {% load shop_extras %} {% load currency_filters %} {% block content %}

Checkout

{% csrf_token %}
Select Shipping Address
{% if saved_addresses %}
{% for addr in saved_addresses %}
{% endfor %}
{% else %}
No shipping addresses found. Add one now
{% endif %}
Contact Information (Optional)
{{ form }}
Payment Option
Order Summary
{% if original_total and total_discount %}
Subtotal {{ currency_symbol }}{{ original_total|convert_currency:currency_rate|floatformat:2 }}
Discount -{{ currency_symbol }}{{ total_discount|convert_currency:currency_rate|floatformat:2 }}

{% endif %}
Total
{{ currency_symbol }}{{ total|convert_currency:currency_rate|floatformat:2 }}

🔒 Secured by Paystack

{% endblock %}