{% extends "base.html" %} {% block content %}
| # | Tenant | ID Number | Phone | Status | Date | Actions |
|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ app.user.get_full_name }} | {{ app.id_number }} | {{ app.user.phone_number|default:"-" }} | {% if app.status == "pending" %} Pending {% elif app.status == "approved" %} Approved {% else %} Rejected {% endif %} | {{ app.submitted_at|date:"Y-m-d" }} | {% if app.status == "pending" %} Approve Reject {% else %} No action {% endif %} |
No applications found.