{% extends "base.html" %} {% load humanize %} {% block title %}My Dashboard{% endblock %} {% block nav_dashboard %}active{% endblock %} {% block content %} {% if content_locked %} {% endif %}
{{ course_count }}
My Courses
{{ unread_notifications.count }}
Notifications
{% if enrollment %}Active{% else %}Pending{% endif %}
Enrollment Status
{{ total_paid|floatformat:0|intcomma }}
UGX Paid
My Enrollment
{% if enrollment %}
Student ID {{ enrollment.student_number }}
Program {{ enrollment.program }}
Level {{ enrollment.program.get_level_display }}
Enrolled {{ enrollment.enrolled_at|date:"d M Y" }}
Status Active
{% else %}
{% if application %}
Your application ({{ application.reference_number }}) is {{ application.get_status_display }}. You will receive an email when a decision is made.
{% else %}

No enrollment found. Have you applied yet?

Apply Now
{% endif %}
{% endif %}
Notifications
{% if unread_notifications %} {{ unread_notifications.count }} new {% endif %}
{% for notif in recent_notifications %}
{{ notif.title }}
{{ notif.message|truncatechars:80 }}
{{ notif.created_at|timesince }} ago
{% empty %}
No notifications yet
{% endfor %}
{% endblock %}