{% extends 'base.html' %} {% block title %}Pending Clients - HAVEN GRAZURI ADVANCE{% endblock %} {% block content %}

Pending Client Approvals

Review and approve clients pending registration approval.

Back to Clients {% if total_count > 0 %} {% endif %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %} {% if total_count > 0 %}
⚠️

{{ total_count }} client{{ total_count|pluralize }} waiting for approval.

{% endif %}
🔍
{% if clients %}
{% csrf_token %}
{% for client in clients %} {% endfor %}
Client Contact Info Business Registration Date Actions
{% if client.profile_image %} {{ client.get_full_name }} {% else %}
{{ client.get_initials }}
{% endif %}
{{ client.get_full_name }}
{{ client.id_number|default:"No ID" }}
{{ client.email|default:"No email" }}
{{ client.phone_number }}
{{ client.business_name|default:"N/A" }}
{{ client.business_type|capfirst|default:"N/A" }}
{{ client.date_joined|date:"M d, Y" }}
View
{% if clients.has_other_pages %}
{% if clients.has_previous %} Previous {% endif %} {% if clients.has_next %} Next {% endif %}
{% endif %} {% else %}

No Pending Clients

There are currently no clients waiting for approval.

{% endif %}
{% endblock %}