{% extends "base.html" %} {% block sidebar %} {% if perms.auth.is_admin %} {% include "admin/components/sidebar.html" %} {% elif perms.auth.is_alumnus %} {% include "alumni/components/sidebar.html" %} {% elif perms.auth.is_student %} {% include "student/components/sidebar.html" %} {% endif %} {% endblock %} {% block content %}

Student List

{% if perms.auth.is_admin %} {% endif %} {% for item in students%} {% if perms.auth.is_admin %} {% endif %} {% endfor %}
USN NAME CONTACT NUMBER RV EMAIL ID EMAIL ID Branch Year JoinedEdit Delete
{{item.usn}} {{item.name}} {{item.phone}} {{item.rv_email}} {{item.email}} {{item.branch}} {{item.year_joined}}
{% csrf_token %} {% csrf_token %}
{% endblock %}