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

Subject School Ranking Report

{{ subject.subject_code }} - {{ subject.subject_name_eng }} | {{ project.name }} ({{ project.year }})

Back
Total Schools

{{ total_schools }}

Average GPA

{% with total_gpa=0 %} {% for school in ranking_data %} {% with total_gpa=total_gpa|add:school.gpa %} {% endwith %} {% endfor %} {% endwith %} {{ ranking_data|length|yesno:"-,0" }}

Average Pass Rate

{% with total_pass=0 %} {% for school in ranking_data %} {% with total_pass=total_pass|add:school.passed_pct %} {% endwith %} {% endfor %} {% endwith %} {% if ranking_data %} {{ ranking_data|length|add:0 }} {% else %} 0 {% endif %}%

Total Students

{% with total_students=0 %} {% for school in ranking_data %} {% with total_students=total_students|add:school.total_students %} {% endwith %} {% endfor %} {% endwith %} {{ ranking_data|length|yesno:"-,0" }}

Filters Applied: {% if region_id %} Region: {{ ranking_data.0.region|default:"Selected" }}{% else %} Region: All{% endif %} | {% if district_id %} District: {{ ranking_data.0.district|default:"Selected" }}{% else %} District: All{% endif %} | Layout: {{ layout|title }}
School Rankings by GPA (Lower is Better)
{% if layout == 'extended' %} {% if academic_level_id == 2 %} {% elif academic_level_id == 1 %} {% else %} {% endif %} {% endif %} {% for school in ranking_data %} {% if layout == 'extended' %} {% if academic_level_id == 2 %} {% elif academic_level_id == 1 %} {% else %} {% endif %} {% endif %} {% empty %} {% endfor %}
Rank School Code School Name District Region Ownership Total Passed Pass % Avg Score GPA GradeABCDESFABCDFABCDE
{{ school.rank }} {{ school.school_code }} {{ school.school_short|truncatechars:30 }} {{ school.district }} {{ school.region }} {{ school.ownership }} {{ school.total_students }} {{ school.passed }} {{ school.passed_pct }}% {{ school.avg_score|floatformat:2 }} {{ school.gpa|floatformat:4 }} {{ school.grade }} {{ school.A|default:"0" }} {{ school.B|default:"0" }} {{ school.C|default:"0" }} {{ school.D|default:"0" }} {{ school.E|default:"0" }} {{ school.S|default:"0" }} {{ school.F|default:"0" }}{{ school.A|default:"0" }} {{ school.B|default:"0" }} {{ school.C|default:"0" }} {{ school.D|default:"0" }} {{ school.F|default:"0" }}{{ school.A|default:"0" }} {{ school.B|default:"0" }} {{ school.C|default:"0" }} {{ school.D|default:"0" }} {{ school.E|default:"0" }}
No data available for the selected filters
Notes:
{% endblock %}