{% extends 'base.html' %} {% load humanize %} {% block title %}Order #{{ order.order_number }} — Chiez Stores{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Order #{{ order.order_number }}

Placed on {{ order.created_at|date:"F d, Y \\a\\t g:i A" }}

{{ order.get_status_display }} {% if order.can_cancel %}
{% csrf_token %}
{% endif %}
{% if whatsapp_url %}

Complete Your Order via WhatsApp

Your order has been logged. Click the button below to text your order details directly to us and receive payment instructions.

Chat on WhatsApp to Pay
{% endif %}
Order Items
{% for item in order.items.all %}
{% if item.product and item.product.image %} {{ item.product_name }} {% else %}
{% endif %}
{{ item.product_name }}
{% if item.size or item.color %}
{% if item.size %}Size: {{ item.size }}{% endif %} {% if item.color %}  |  Color: {{ item.color }}{% endif %}
{% endif %}
Qty: {{ item.quantity }} × ₦{{ item.product_price|floatformat:0|intcomma }}
₦{{ item.subtotal|floatformat:0|intcomma }}
{% endfor %}
Subtotal₦{{ order.subtotal|floatformat:0|intcomma }}
{% if order.discount_amount > 0 %}
Discount− ₦{{ order.discount_amount|floatformat:0|intcomma }}
{% endif %}
Delivery₦{{ order.delivery_cost|floatformat:0|intcomma }}
Total₦{{ order.total|floatformat:0|intcomma }}
Shipping Address

{{ order.full_name }}
{{ order.address }}
{{ order.city }}, {{ order.state }}{% if order.postal_code %} {{ order.postal_code }}{% endif %}
{{ order.country }}
📞 {{ order.phone }}
✉ {{ order.email }}

{% if order.notes %}
Order Notes

{{ order.notes }}

{% endif %}
Order Status
Pending
Order received
Paid
Payment confirmed
Processing
Being prepared
Shipped
On the way
Delivered
Delivered to you
{% if order.status == 'cancelled' %}
Cancelled
Order was cancelled
{% endif %}
Payment Information
Method{{ order.get_payment_method_display }}
Status {% if order.is_paid %}Paid{% else %}Pending{% endif %}
{% if order.payment_ref %}
Reference{{ order.payment_ref }}
{% endif %}
Back to Orders Continue Shopping
{% endblock %} {% block extra_js %} {% endblock %}