{% extends 'dashboard/base.html' %} {% load humanize %} {% block title %}Customers{% endblock %} {% block page_title %}Customers{% endblock %} {% block content %}
{% if q %} Clear {% endif %}
{% for customer in customers %} {% empty %} {% endfor %}
Customer Email 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.
{% if customers.has_other_pages %} {% endif %}
{% endblock %}