{% extends "base.html" %} {% block title %}My Students{% endblock %} {% block nav_teacher_students %}active{% endblock %} {% block content %}
{% if search_query or current_program %} {% endif %}
{% if enrollments %}
{% for enrollment in enrollments %} {% endfor %}
Student Student ID Program Level Enrolled
{{ enrollment.student.get_full_name }}
{{ enrollment.student.email }}
{{ enrollment.student_number }} {{ enrollment.program.name }} {{ enrollment.program.get_level_display }} {{ enrollment.enrolled_at|date:"d M Y" }}
{% else %}

No students found.

{% endif %}
{% if is_paginated %} {% endif %} {% endblock %}