{% extends 'base.html' %} {% load static %} {% load humanize %} {% block content %}

Customer - ({{customer.first_name}} {{customer.last_name}})

{% include 'partials/_messages.html' %}
Customer Details
First Name {{customer.first_name}}
Last Name {{customer.last_name}}
Email Address {{customer.email}}
Language {{customer.language}}
Mobile {{customer.mobile}}
Registration Status {% if customer.registration_status == "PENDING" %} PENDING {% elif customer.registration_status == "APPROVED" %} APPROVED {% elif customer.registration_status == "REJECTED" %} REJECTED {% else %} {{ customer.registration_status }} {% endif %}
Customer Status {% if customer.customer_status == "ACTIVE" %} ACTIVE {% elif customer.customer_status == "INACTIVE" %} INACTIVE {% else %} {{ customer.customer_status }} {% endif %}
Lock Status {% if customer.is_locked %} LOCKED {% else %} ACTIVE {% endif %}
Created At {{customer.created_At}}
Updated At {{customer.updated_At}}
{% if customer.is_locked %} {% else %} {% endif %} {% if super_admin or sub_feature_matrix.update_customer %} {% endif %}
{% endblock %}