{% extends "base.html" %} {% block title %}Clients | PMS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

All Clients

Manage client records and engagement details.

{% if query %} Remove Filters {% endif %} Add Client
{% for client in page_obj %} {% empty %} {% endfor %}
Name Email 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.
{% endblock %} {% block extra_js %} {% endblock %}