{% extends 'dashboard/base.html' %} {% load humanize %} {% block title %}Order #{{ order.order_number }}{% endblock %} {% block page_title %}Order #{{ order.order_number }}{% endblock %} {% block content %}
| Product | Size/Color | Qty | Unit Price | Subtotal |
|---|---|---|---|---|
|
{% if item.product and item.product.image %}
{% else %}
{% endif %}
{{ item.product_name }}
|
{{ item.size|default:"—" }} / {{ item.color|default:"—" }} | {{ item.quantity }} | ₦{{ item.product_price|floatformat:0|intcomma }} | ₦{{ item.subtotal|floatformat:0|intcomma }} |
This transaction was completed without creating an account profile.
{% endif %}