{% extends 'base.html' %} {% load static %} {% block title %}{{ client.get_full_name }}'s Documents - HAVEN GRAZURI ADVANCE{% endblock %} {% block content %}

{{ client.get_full_name }}'s Documents

Manage and verify client's KYC documents

🪪 National ID ({{ id_documents|length }} files)

{% if id_documents %} {% else %}
🪪

No ID documents uploaded yet

{% endif %}

📷 Selfie Photo ({{ selfie_documents|length }} files)

{% if selfie_documents %}
{% for doc in selfie_documents %} {% endfor %}
{% else %}
📷

No selfie photo uploaded yet

{% endif %}

🧾 Utility Bill ({{ utility_documents|length }} files)

{% if utility_documents %} {% else %}
🧾

No utility bill uploaded yet

{% endif %}

Bank Statement ({{ bank_documents|length }} files)

{% if bank_documents %} {% else %}

No bank statement uploaded yet

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}