{% extends 'admin_navbar.html' %} {% load static %} {% block title %} All Students List {% endblock %} {% block css %} {% endblock %} {% block body %}

Students List

{% for student in students %} {% endfor %}
Sr.No Name ID Email Mobile Number Branch Class Roll Number Delete
{{forloop.counter}}. {{student.user.get_full_name}} {{student.user.id}} {{student.user.email}} {{student.phone}} {{student.branch}} {{student.classroom}} {{student.roll_no}} Delete
{% endblock %}