{% extends 'base.html' %} {% block title %}Client Management - HAVEN GRAZURI ADVANCE{% endblock %} {% block content %}
Manage client information, loan history, and documentation.
{{ error_message }}
Total Clients
{{ total_clients|default:"0" }}
đĨ All active clients
Last 30 Days
{{ clients_30_days }}
{% if clients_30_days > 0 %}â New registrations
{% endif %}Last 60 Days
{{ clients_60_days }}
{% if growth_60_days > 0 %}â +{{ growth_60_days }} this period
{% endif %}Last 90 Days
{{ clients_90_days }}
{% if growth_90_days > 0 %}â +{{ growth_90_days }} this period
{% endif %}Growth Rate
{% if growth_rate_display == 'percentage' and growth_rate_percentage != None %} {% if growth_rate_percentage > 0 %}+{{ growth_rate_percentage }}%
â {{ growth_rate_label }}
{% elif growth_rate_percentage == 0 %}0%
â No change
{% else %}{{ growth_rate_percentage }}%
â {{ growth_rate_label }}
{% endif %} {% elif growth_rate_display == 'recent_period' %}{{ growth_rate_percentage }}
đ {{ growth_rate_label }}
{% elif growth_rate_display == 'no_data' %}0
âšī¸ {{ growth_rate_label }}
{% else %}--
âšī¸ {{ growth_rate_label }}
{% endif %}