{% extends "base.html" %} {% block title %}Customers - AsapLoads POS{% endblock %} {% block header_title %}Customers{% endblock %} {% block content %}
Customers
Manage your customer database
Add Customer
{{ form.query }}
{% if customers %}
{% for customer in customers %} {% endfor %}
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 %}
{% if customers.has_other_pages %} {% endif %} {% else %}

No customers found. Add a customer to get started.

{% endif %}
{% endblock %}