{% extends 'base.html' %} {% load indonesian_filters %} {% block title %}Customer List - Manufacturing App{% endblock %} {% block content %}

Customer List

Add Customer
{% if customers %}
{% for customer in customers %} {% endfor %}
Code Name Contact Person Email Phone Status Actions
{{ customer.code }} {{ customer.name }} {% if customer.address %}
{{ customer.address|truncatechars:30 }} {% endif %}
{{ customer.contact_person|default:"-" }} {% if customer.email %} {{ customer.email }} {% else %} - {% endif %} {{ customer.phone|default:"-" }} {% if customer.is_active %} Active {% else %} Inactive {% endif %}
{% else %}

No Customers Found

There are no customers in the system yet.

Add Your First Customer
{% endif %}
Quick Stats
{{ customers|length }}
Total Customers
{{ customers|length }}
Active Customers
0
Pending Orders
0
This Month
{% endblock %}