{% extends "base.html" %} {% block content %}

Customer Management

Manage all customers in the system

New Customer
Total Customers

{{ customer_count }}

Active

{{ customers|selectattr('is_active', 'equalto', True)|list|length if customers else 0 }}

Inactive

{{ customers|rejectattr('is_active', 'equalto', True)|list|length if customers else 0 }}

Total Enquiries

--

{% if search %}
Results for "{{ search }}"
{% endif %}
Customer List {{ customers|length }} Customers
{% for customer in customers %} {% else %} {% endfor %}
Code Company Contact Person Email Phone City Actions
{{ customer.customer_code }} {{ customer.company_name }} {{ customer.contact_name or "-" }} {{ customer.email or "-" }} {{ customer.telephone or "-" }} {{ customer.city or "-" }} {% if current_user.role == "Admin" %} {% endif %}
No customers found.
{% endblock %}