{% 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 %}

Admin task

{% endblock content %}