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

Rejected Clients

Review clients that were rejected during the approval process.

{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %} {% if total_count > 0 %}

{{ total_count }} client{{ total_count|pluralize }} rejected.

{% endif %}
🔍
{% if clients %}
{% for client in clients %} {% endfor %}
Client Contact Info Business Rejection Info 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" }}
{% if client.rejection_reason %}
Reason:
{{ client.rejection_reason|truncatewords:15 }}
{% endif %} {% if client.rejected_at %}
Rejected: {{ client.rejected_at|date:"M d, Y" }}
{% endif %}
{% if clients.has_other_pages %}
{% if clients.has_previous %} Previous {% endif %} {% if clients.has_next %} Next {% endif %}
{% endif %} {% else %}

No Rejected Clients

No clients have been rejected yet.

{% endif %}
{% endblock %}