{% extends 'base.html' %} {% load indonesian_filters %} {% block title %}Customer List - Manufacturing App{% endblock %} {% block content %}
| Code | Name | Contact Person | 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 %} |
There are no customers in the system yet.