Customer - ({{customer.first_name}} {{customer.last_name}})
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}} |