{% extends 'base_dashboard.html' %} {% block title %}My Students — Online LMS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

My Students

Students enrolled in courses assigned to you. Fees and payments are handled by Accounts Staff.

{% if approved_count > 0 %} {{ approved_count }} Active {% endif %}
{% include 'includes/messages.html' %}
{{ total_count }}
Total
{{ pending_count }}
Awaiting admission
{{ approved_count }}
Active
{{ rejected_count }}
Not admitted
{{ enrollments|length }} student{{ enrollments|length|pluralize }}
{% for enrollment in enrollments %}
{% if enrollment.student.profile_picture %} {% else %}
{% endif %}
{{ enrollment.student.get_display_name }}
@{{ enrollment.student.username }}
{{ enrollment.course.title|truncatechars:45 }}
{% if enrollment.status == 'approved' %} Active {% elif enrollment.status == 'pending' %} Awaiting admission {% else %} Not admitted {% endif %} {{ enrollment.requested_at|date:"M d, Y" }}
Full Name {{ enrollment.student.full_name|default:"—" }}
Email {{ enrollment.student.email|default:"—" }}
Phone {{ enrollment.student.phone_number|default:"—" }}
Qualification {{ enrollment.student.qualification|default:"—" }}
Last Degree {{ enrollment.student.last_degree|default:"—" }}
{{ enrollment.course.title }}
{% if enrollment.course.duration %}
{{ enrollment.course.duration }}
{% endif %}
{% empty %}

No students in your assigned courses yet.

{% endfor %} {% endblock %}