{% extends 'base.html' %} {% load widget_tweaks %} {% load shop_extras %} {% load currency_filters i18n %} {% 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 Method
Order Summary
Total Amount {{ currency_symbol }}{{ total|convert_currency:currency_rate|floatformat:2 }}

🔒 Secured by Flutterwave

{% endblock %}