{% extends "base.html" %} {% block title %}Index_Root{% endblock title %} {% block static %} {% load static %} {% endblock static %} {% block content %}

Student

{% if student %}
{% for s in student %} {% endfor %}
# Name Mobile Info
{{ forloop.counter }} {{ s.name }} {{ s.mobile }} ℹ️
{% else %}

No Students found. Click ➕ to add.

{% endif %}

Staff

{% if staff %}
{% for s in staff %} {% endfor %}
# Name Mobile Info
{{ forloop.counter }} {{ s.name }} {{ s.mobile }} ℹ️
{% else %}

No Staff found. Click ➕ to add.

{% endif %}

Deleted User

{% if inactive %}
{% for s in inactive %} {% if s.is_staff %} {% else %} {% endif %} {% endfor %}
# Name Mobile User Type Info
{{ forloop.counter }} {{ s.name }} {{ s.mobile }}Staff ℹ️Student ℹ️
{% else %}

No Inactive member

{% endif %}

Rooms

{% if room %}
{% for r in room %} {% endfor %}
# Room Number Type Info
{{ forloop.counter }} {{ r.room_number }} {{ r.get_room_type_display }} ℹ️
{% else %}

No Rooms found. Click ➕ to add.

{% endif %}
{% endblock content %} {% block footer %}
🏠

Home

🏠

Home

🏠

Home

{% endblock footer %}