{% extends "base.html" %} {% block content %}

Tenant Applications

{% if applications %}
{% for app in applications %} {% endfor %}
# 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 %}
{% else %}

No applications found.

{% endif %}
{% endblock %}