{% extends 'base.html' %} {% load static %} {% block title %}{{ school_class }} — Students{% endblock %} {% block content %}

{{ school_class }}

{{ students.count }} student{{ students.count|pluralize }} • {{ school_class.get_section_type_display }} • {{ school_class.academic_year }}

{% if school_class.class_teacher %}
Class Teacher: {{ school_class.class_teacher.user.get_full_name }} • {{ school_class.class_teacher.phone_number|default:"No phone" }}
{% endif %}
Total Students
{{ students.count }}
Male
{{ male_count|default:"0" }}
Female
{{ female_count|default:"0" }}
Capacity
{{ students.count }}/{{ school_class.capacity }}
Student Roster
{% for student in students %} {% empty %} {% endfor %}
# Student ID Name Gender Date of Birth Parent Contact Status Actions
{{ forloop.counter }} {{ student.student_id }}
{{ student.get_full_name }}
{{ student.get_gender_display }} {{ student.date_of_birth|date:"d M Y"|default:"—" }} {% with student.parents.filter(is_primary_contact=True).first as primary %} {% if primary %}
{{ primary.get_full_name }}
{{ primary.phone }}
{% else %} {% with student.parents.first as any_parent %} {% if any_parent %}
{{ any_parent.get_full_name }}
{{ any_parent.phone }}
{% else %} {% endif %} {% endwith %} {% endif %} {% endwith %}
{{ student.get_status_display }}
No students enrolled in this class yet.
{% block extra_js %} {% endblock %} {% endblock %}