{% extends 'base.html' %} {% block title %}Customers{% endblock %} {% block content %}

Customers

New Customer
{% if customers %}
{% for customer in customers %} {% endfor %}
Code Name Type Contact Person Email Phone Credit Limit Status Actions
{{ customer.code }} {{ customer.name }} {{ customer.get_customer_type_display }} {{ customer.contact_person|default:"N/A" }} {{ customer.email|default:"N/A" }} {{ customer.phone|default:"N/A" }} Rp {{ customer.credit_limit|floatformat:0 }} {{ customer.is_active|yesno:"Active,Inactive" }}
{% if is_paginated %} {% endif %} {% else %}

No Customers Found

Start by adding your first customer.

Add Customer
{% endif %}
{% endblock %}