Manage client records and engagement details.
| Name | Mobile | Location | Status | Actions | |
|---|---|---|---|---|---|
|
{{ client.names.first.name|default:"CL"|slice:":2"|upper }}
{% for name in client.names.all %}
{{ name.name }}
{% empty %}
-
{% endfor %}
|
{% for email in client.emails.all %}
{{ email.email }}
{% empty %}
-
{% endfor %}
|
{% for mobile in client.mobiles.all %}
{{ mobile.mobile_number }}
{% empty %}
-
{% endfor %}
|
{{ client.location|default:"-" }} | {% if client.is_active %}Active{% else %}Inactive{% endif %} | |
| No clients found. | |||||