{% extends 'base/base.html' %} {% load static %} {% block content %} {% include 'partials/_alerts.html' %}
Students List
{% for student in students %} {% endfor %}
SL Name Class Academic Year Admission ID Admission Date Action
{{ forloop.counter }} {{ student.name }} {{ student.class_type }} {{ student.academic_year }} {{ student.admission_id }} {{ student.admission_date }}
{% if students.has_other_pages %} {% endif %}
{% endblock %}