{% extends 'dashboard/base.html' %} {% load humanize %} {% block title %}Customers{% endblock %} {% block page_title %}Customers{% endblock %} {% block content %}
| Customer | Joined | Orders | Total Spent | Action | |
|---|---|---|---|---|---|
|
{{ customer.first_name|first|upper|default:customer.username|first|upper }}
{{ customer.get_full_name|default:customer.username }}
@{{ customer.username }}
|
{{ customer.email }} | {{ customer.date_joined|date:"M d, Y" }} | {{ customer.order_count }} | {% if customer.total_spent %}₦{{ customer.total_spent|floatformat:0|intcomma }}{% else %}—{% endif %} | View Profile |
| No customer accounts found matching those parameters. | |||||