{% extends 'base.html' %} {% block title %}Customer - {{ customer.name }}{% endblock %} {% block content %}
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 }}
{{ customer.address }}
Customer Since: {{ customer.created_at|date:"d/m/Y" }}
Last Updated: {{ customer.updated_at|date:"d/m/Y H:i" }}