{% extends "base.html" %} {% block title %}Customers - AsapLoads POS{% endblock %} {% block header_title %}Customers{% endblock %} {% block content %}
| Name | Contact | Address | Purchases | Actions |
|---|---|---|---|---|
| {{ customer.full_name }} |
{% if customer.email %}
{{ customer.email }}
{% endif %}
{% if customer.phone %}
{{ customer.phone }}
{% endif %}
|
{% if customer.full_address %} {{ customer.full_address }} {% else %} No address {% endif %} |
{{ customer.total_purchases }} purchases
{% if customer.total_spent > 0 %}
{{ company_settings.currency_symbol }}{{ customer.total_spent|floatformat:2 }} spent
{% endif %}
|
No customers found. Add a customer to get started.