{% extends 'base.html' %} {% block title %}Customer - {{ customer.name }}{% endblock %} {% block content %}

Customer Details

Back to List Edit
Customer Information

Customer Code: {{ customer.code }}

Name: {{ customer.name }}

Type: {{ customer.get_customer_type_display }}

Status: {{ customer.is_active|yesno:"Active,Inactive" }}

Contact Person: {{ customer.contact_person|default:"Not set" }}

Email: {{ customer.email|default:"Not set" }}

Phone: {{ customer.phone|default:"Not set" }}

Credit Limit: Rp {{ customer.credit_limit|floatformat:0 }}

{% if customer.address %}
Address:

{{ customer.address }}

{% endif %}
Account Information

Customer Since: {{ customer.created_at|date:"d/m/Y" }}

Last Updated: {{ customer.updated_at|date:"d/m/Y H:i" }}

{% endblock %}