|
Order Details
| Order Number |
#{{ order.order_number }} |
| Previous Status |
{{ old_status }} |
| Current Status |
{{ new_status }} |
| Payment |
{% if is_paid %}
Paid
{% else %}
Unpaid
{% endif %}
|
| Delivery |
{{ order.delivery_option|title }} |
Your Items
| Item |
Variant |
Qty |
Price |
{% for item in items %}
| {{ item.product_name }} |
{% if item.size or item.color %}{{ item.size }}{% if item.size and item.color %} / {% endif %}{{ item.color }}{% else %}—{% endif %} |
× {{ item.quantity }} |
₦{{ item.product_price|floatformat:2|intcomma }} |
{% endfor %}
| Subtotal |
₦{{ order.subtotal|floatformat:2|intcomma }} |
| Delivery |
₦{{ order.delivery_cost|floatformat:2|intcomma }} |
{% if order.discount_amount > 0 %}
| Discount |
−₦{{ order.discount_amount|floatformat:2|intcomma }} |
{% endif %}
| Total |
₦{{ order.total|floatformat:2|intcomma }} |
Delivery Address
{{ order.address }} {{ order.city }}, {{ order.state }}
{% if support_whatsapp %}
|
Questions about your order? We're happy to help.
|
{% endif %}
|