{% extends 'base.html' %} {% load static %} {% block extra_head %} {% endblock %} {% block content %}
1 Order created
2 {% if payment_verified %}Payment verified{% elif order.payment_method == 'Cash on Delivery' %}COD confirmed{% else %}Payment pending{% endif %}
3 Track delivery
Order #{{ order.id }}
Payment method {{ order.payment_method }}
Payment provider {{ order.payment_provider_label }}
Payment status {{ order.payment_status }}
Total Rs. {{ order.total_price|floatformat:2 }}
Reference {{ order.payment_reference|default:'-' }}
View order dashboard

Open the improved order detail page to track timeline, payment state, and next actions.

Manage payment if needed

If payment is still pending or failed, you can safely retry without recreating the order.

Continue browsing

Return to the upgraded storefront and keep exploring products with smarter filters and cards.

{% if order.payment_status != 'Paid' %} Manage Payment {% else %} View Order {% endif %} View My Orders Go Home
{% endblock %}