{% extends 'base.html' %} {% block title %}Rejected Clients - HAVEN GRAZURI ADVANCE{% endblock %} {% block content %}
Review clients that were rejected during the approval process.
{{ total_count }} client{{ total_count|pluralize }} rejected.
| Client | Contact Info | Business | Rejection Info | Actions |
|---|---|---|---|---|
|
{% if client.profile_image %}
{{ 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 %}
|
Showing {{ clients.start_index }} to {{ clients.end_index }} of {{ total_count }} results
No clients have been rejected yet.