{% extends 'base.html' %} {% block title %}{{ school_class }}{% endblock %} {% block page_title %}Class Detail{% endblock %} {% block content %}
👨‍🎓 Students in this class ({{ students.count }}) Add Student
{% for student in students %} {% empty %} {% endfor %}
StudentIDEmailStatusActions
{{ student.first_name|first }}
{{ student.full_name }}
{{ student.student_id }} {{ student.email }} {{ student.get_status_display }}
👨‍🎓
No students in this class
{% endblock %}