{% extends 'accounts/base_account.html' %} {% block account_content %}
Verification Status
{% if verification.verification_status == 'verified' %} Verified {% elif verification.verification_status == 'pending' %} Under Review {% else %} Not Verified {% endif %}
{% if verification.verification_status == 'verified' %}

Identity Verified

Your identity has been successfully verified on {{ verification.verified_at|date:"F j, Y" }}.

Document Type

{{ verification.get_id_type_display|default:"Not specified" }}

Verified On

{{ verification.verified_at|date:"F j, Y \a\t g:i A"|default:"N/A" }}

Verified By

{% if verification.verified_by %} {{ verification.verified_by.get_full_name|default:verification.verified_by.email }} {% else %} System {% endif %}

Back to Dashboard
{% elif verification.verification_status == 'pending' %}

Verification in Progress

We're currently reviewing your verification documents. This usually takes 1-2 business days. You'll receive an email once your verification is complete.

Submission Details
Document Type

{{ verification.get_id_type_display|default:"Not specified" }}

Submitted On

{{ verification.updated_at|date:"F j, Y \a\t g:i A"|default:"N/A" }}

{% elif verification.verification_status == 'rejected' %}

Verification Rejected

We couldn't verify your identity with the provided documents.

{% if verification.rejection_reason %}
Reason for Rejection:

{{ verification.rejection_reason }}

{% endif %}
Submission Details
Document Type

{{ verification.get_id_type_display|default:"Not specified" }}

Rejected On

{{ verification.updated_at|date:"F j, Y \a\t g:i A"|default:"N/A" }}

Try Again
{% else %}

Verify Your Identity

Verify your identity to access all features and increase trust with other members. This helps us keep our community safe.

Why verify your identity?
  • Build trust with other community members
  • Access all platform features
  • Higher chance of booking acceptance
  • Faster payout processing
Start Verification
{% endif %}
{% endblock %}