{% extends 'base.html' %} {% block title %} Select Student(s) and then click on proceed {% endblock title %} {% block content-header %}
{% csrf_token %}

You can also search by name/class by typing in the search box

{% endblock content-header %} {% block content %} {% for student in students %} {% endfor %}
Name Current Class
{{student}} {{student.current_class}}
{% endblock content %} {% block morejs %} {% endblock morejs %}