{% extends 'dashboard/base.html' %} {% load humanize %} {% block title %}{{ customer.get_full_name|default:customer.username }}{% endblock %} {% block page_title %}Customer Detail{% endblock %} {% block content %}
| Order # | Date | Items | Total | Payment | Status | |
|---|---|---|---|---|---|---|
| #{{ order.order_number }} | {{ order.created_at|date:"M d, Y" }} | {{ order.items.count }} | ₦{{ order.total|floatformat:0|intcomma }} | {% if order.is_paid %}Paid{% else %}Unpaid{% endif %} | {{ order.get_status_display }} | View |
| No orders yet. | ||||||