| SCHOOL GPA |
{{ totals.gpa|default:"-"|floatformat:4 }} |
{{ totals.gpa_grade|default:"-" }} |
{{ totals.gpa_status|default:"-" }} |
{% if school_rank %}
| DISTRICT RANK |
{{ school_rank.district_rank }} / {{ school_rank.district_total }}
{% if school_rank.district_rank == 1 %}
🥇 TOP
{% elif school_rank.district_rank == 2 %}
🥈 2ND
{% elif school_rank.district_rank == 3 %}
🥉 3RD
{% elif school_rank.district_rank <= school_rank.district_total|add:0.1|floatformat:0|divisibleby:4 %}
TOP 25%
{% endif %}
|
| REGION RANK |
{{ school_rank.region_rank }} / {{ school_rank.region_total }}
{% if school_rank.region_rank == 1 %}
🥇 TOP
{% elif school_rank.region_rank <= 5 %}
TOP 5
{% elif school_rank.region_rank <= 10 %}
TOP 10
{% endif %}
|
| OVERALL RANK |
{{ school_rank.overall_rank }} / {{ school_rank.overall_total }}
{% if school_rank.overall_rank and school_rank.overall_rank <= 10 %}
🏆 REGIONAL TOP {{ school_rank.overall_rank }}
{% endif %}
|
{% endif %}
| STUDENTS WITH RESULTS |
{{ totals.with_results }} |
| DIVISION PERFORMANCE |
| DIVISION | SEX |
I | II | III |
IV | 0 |
PASS I–III |
PASS I–IV |
| NO | % |
NO | % |
NO | % |
NO | % |
NO | % |
NO | % |
NO | % |
| F |
{{ grades.af }} |
{% widthratio grades.af totals.sat_f 100 %}% |
{{ grades.bf }} |
{% widthratio grades.bf totals.sat_f 100 %}% |
{{ grades.cf }} |
{% widthratio grades.cf totals.sat_f 100 %}% |
{{ grades.df }} |
{% widthratio grades.df totals.sat_f 100 %}% |
{{ grades.ef }} |
{% widthratio grades.ef totals.sat_f 100 %}% |
{{ a_c_f }} |
{% widthratio a_c_f totals.sat_f 100 %}% |
{{ a_d_f }} |
{% widthratio a_d_f totals.sat_f 100 %}% |
| M |
{{ grades.am }} |
{% widthratio grades.am totals.sat_m 100 %}% |
{{ grades.bm }} |
{% widthratio grades.bm totals.sat_m 100 %}% |
{{ grades.cm }} |
{% widthratio grades.cm totals.sat_m 100 %}% |
{{ grades.dm }} |
{% widthratio grades.dm totals.sat_m 100 %}% |
{{ grades.em }} |
{% widthratio grades.em totals.sat_m 100 %}% |
{{ a_c_m }} |
{% widthratio a_c_m totals.sat_m 100 %}% |
{{ a_d_m }} |
{% widthratio a_d_m totals.sat_m 100 %}% |
{% with t_sat=grades.a|add:grades.b|add:grades.c|add:grades.d|add:grades.e %}
| T |
{{ grades.a }} |
{% widthratio grades.a t_sat 100 %}% |
{{ grades.b }} |
{% widthratio grades.b t_sat 100 %}% |
{{ grades.c }} |
{% widthratio grades.c t_sat 100 %}% |
{{ grades.d }} |
{% widthratio grades.d t_sat 100 %}% |
{{ grades.e }} |
{% widthratio grades.e t_sat 100 %}% |
{{ a_c_total }} |
{% widthratio a_c_total t_sat 100 %}% |
{{ a_d_total }} |
{% widthratio a_d_total t_sat 100 %}% |
{% endwith %}
| GENERAL COMBINATION DIVISION PERFORMANCE |
| COMBINATION |
I |
II |
III |
IV |
0 |
TOTAL |
I - III |
% |
COMBINATION GPA |
RANK |
{% for combo in combinations %}
| {{ combo.code }} |
{{ combo.division_counts.I|default:"0" }} |
{{ combo.division_counts.II|default:"0" }} |
{{ combo.division_counts.III|default:"0" }} |
{{ combo.division_counts.IV|default:"0" }} |
{{ combo.division_counts.0|default:"0" }} |
{{ combo.total_students }} |
{{ combo.pass_i_iii }} |
{% widthratio combo.pass_i_iii combo.total_students 100 %}% |
{{ combo.gpa|floatformat:4|default:"-" }} |
{% if combo.rank %}
{{ combo.rank }} / {{ combo.total_combinations }}
{% endif %}
|
{% endfor %}
| TOTAL |
{{ totals_by_combo.total_I }} |
{{ totals_by_combo.total_II }} |
{{ totals_by_combo.total_III }} |
{{ totals_by_combo.total_IV }} |
{{ totals_by_combo.total_0 }} |
{{ totals_by_combo.grand_total }} |
{{ totals_by_combo.total_pass }} |
{% widthratio totals_by_combo.total_pass totals_by_combo.grand_total 100 %}% |
{{ totals_by_combo.overall_gpa|floatformat:4 }} |
|