{% extends 'base.html' %} {% block title %}Students{% endblock %} {% block page_title %}Students{% endblock %} {% block content %}
{% if query %}Clear{% endif %}
{% for student in students %}
Student ID Class Email Status Enrolled Actions
Continuing seamlessly from inside the students list template, then completing all remaining templates and files. {% extends 'base.html' %} {% block title %}Students{% endblock %} {% block page_title %}Students{% endblock %} {% block content %}
{% if query %}Clear{% endif %}
{% for student in students %} {% empty %} {% endfor %}
Student ID Class Email Status Enrolled Actions
{{ student.first_name|first }}
{{ student.full_name }}
{{ student.gender }}
{{ student.student_id }} {{ student.school_class|default:"—" }} {{ student.email }} {{ student.get_status_display }} {{ student.enrollment_date|date:"M d, Y" }}
👨‍🎓
No students found
{% if query %}Try a different search term{% else %}Add your first student to get started{% endif %}
{% endblock %}