{% extends 'academy/admin_base.html' %} {% block title %}Students Management{% endblock %} {% block extra_css %} {% endblock %} {% block admin_content %}
Clear
📋 Student List ({{ students|length }})
{% for student in students %} {% empty %} {% endfor %}
Name Course Registered Payment Actions
{{ student.full_name }}
{{ student.email|default:"—" }}
{{ student.get_course_display }} {{ student.registered_at|date:"d M Y" }} {{ student.payment_confirmed|yesno:"Paid,Pending" }} View
No students found.
{% if is_paginated %} {% include "academy/admin/pagination.html" with page_obj=students %} {% endif %}
{% endblock %}