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

Student



{% if student %}
{% for s in student %} {% endfor %}
# Name Mobile View Edit
{{ forloop.counter }} {{ s.name }} +91 {{ s.mobile }} ℹ️ ✏️
{% else %}

No Student. Click plus (➕) to add new student

{% endif %}

Staff



{% if staff %}
{% for s in staff %} {% endfor %}
# Name Mobile View Edit
{{ forloop.counter }} {{ s.name }} +91 {{ s.mobile }} ℹ️ ✏️
{% else %}

No Staff. Click plus (➕) to add new student

{% endif %}

Admin task

{% endblock %}