{% extends 'teachers/base.html' %} {% load static %} {% block title %}List of Students{% endblock title %} {% block content %}

{{classroom.subject|upper}}

Student List

{% for student in classroom_students %} {% endfor %}
Name Student ID Class Roll No.
{{student.user.first_name}} {{student.user.last_name}} {{student.student_id}} {{student.current_class}} {{student.roll_no}}
{% endblock content %}