{% extends "exams/base.html" %} {% load static %} {% block content %}

Dashboard

{{ current_year }}

Total Projects

{{ total_projects }}

Active: {{ active_projects }} Inactive: {{ inactive_projects }}

Total Students

{{ student_stats.total }}

A-Level: {{ student_stats.A_Level }} O-Level: {{ student_stats.O_Level }} Primary: {{ student_stats.Primary }}

{{ student_stats.A_Level_percent }}%
{{ student_stats.O_Level_percent }}%
{{ student_stats.Primary_percent }}%

Ongoing Projects

{{ ongoing_projects }}

Currently Active

Completed Projects

{{ completed_projects }}

Finished & Archived

Pass Rate (Div I-IV)

{{ division_stats.pass_total }} students

{{ division_stats.pass_percent }}% Pass Rate

I
{{ division_stats.I }} ({{ division_stats.I_percent }}%)
II
{{ division_stats.II }} ({{ division_stats.II_percent }}%)
III
{{ division_stats.III }} ({{ division_stats.III_percent }}%)
IV
{{ division_stats.IV }} ({{ division_stats.IV_percent }}%)

Failed Students

{{ failed_stats.total }} students

{{ failed_stats.percentage }}% Fail Rate {% if failed_stats.trend_direction == 'down' %} {{ failed_stats.trend_value }}% {% elif failed_stats.trend_direction == 'up' %} {{ failed_stats.trend_value }}% {% endif %}

Top Performing Schools
{% for school in top_schools %} < {% empty %} {% endfor %}
# School GPA Grade Status
{{ forloop.counter }} {{ school.school.name|truncatechars:40 }} {{ school.sch_gpa|floatformat:4 }} {{ school.sch_gpa_grade|default:"-" }}{{ school.sch_gpa_status|default:"-" }}
No data available
Recent Projects
{% for project in recent_projects %}
{{ project.name }}
{{ project.academic_level.name }} {{ project.year }}
{% if project.is_active %} Active {% else %} Inactive {% endif %}
{% empty %}
No recent projects
{% endfor %}
{% endblock %}