{% extends 'admin_base_layout.html' %} {% load static %} {% block content %}
| ID | User Name | Uploaded Date | Document | Status |
|---|---|---|---|---|
| {{ doctor.id }} | {{doctor.uploaded_at}} |
{% if doctor.document %}
{% with doctor.document.url|lower as file_url %}
{% if ".png" in file_url or ".jpg" in file_url or ".jpeg" in file_url %}
{% elif ".csv" in file_url %}
{% else %}
|
{% if doctor.user.document_status == "Accepted" %}
Approved
{% elif doctor.user.document_status == "Rejected" %}
Disapproved
{% else %}
|
|
| No users found. | ||||