{% extends "exams/base.html" %} {% load static %} {% block page_title %} {{ title }} - EXTENDED {% endblock %} {% block content %}
{{ title }} - EXTENDED REPORT
PRINT EXCEL SWITCH TO NORMAL
Category: {% if category == 'above_40' %} ≥ 40 Candidates {% elif category == 'below_40' %} < 40 Candidates {% else %} All Schools {% endif %}
Total Schools: {{ rows|length }}
Pass I-III Pass I-IV Fail
{% for r in rows %} {% empty %} {% endfor %}
# CODE SCHOOL NAME DISTRICT REGION OWN REGISTERED SAT DIV I DIV II DIV III PASS I–III DIV IV FAILED (0) PASS I–IV GPA GRD STATUS POS
REGISTERED SAT DIV I DIV II DIV III PASS I–III DIV IV FAILED PASS I–IV
FMT FMT FMT% FMT% FMT% FMT% FMT% FMT% FMT%
{{ r.no }} {{ r.cno }} {{ r.name }} {{ r.district }} {{ r.region }} {{ r.ownership }} {{ r.reg_f }} {{ r.reg_m }} {{ r.reg_t }} {{ r.sat_f }} {{ r.sat_m }} {{ r.sat_t }} {{ r.i_f }} {{ r.i_m }} {{ r.i_t }} {{ r.i_pct }}% {{ r.ii_f }} {{ r.ii_m }} {{ r.ii_t }} {{ r.ii_pct }}% {{ r.iii_f }} {{ r.iii_m }} {{ r.iii_t }} {{ r.iii_pct }}% {{ r.pass_i_iii_f }} {{ r.pass_i_iii_m }} {{ r.pass_i_iii_t }} {{ r.pass_i_iii_pct }}% {{ r.iv_f }} {{ r.iv_m }} {{ r.iv_t }} {{ r.iv_pct }}% {{ r.f_f }} {{ r.f_m }} {{ r.f_t }} {{ r.f_pct }}% {{ r.pass_i_iv_f }} {{ r.pass_i_iv_m }} {{ r.pass_i_iv_t }} {{ r.pass_i_iv_pct }}% {{ r.gpa }} {{ r.grade }} {{ r.status }} {{ r.position }}
No schools found for the selected criteria.
GPA Formula: (I×1 + II×2 + III×3 + IV×4 + 0×5) ÷ Total Candidates
Excellent (≤2.5) Good (2.6-3.5) Average (3.6-4.5) Needs Improvement (>4.5)
with_results: {{ rows.0.with_results|default:0 }} total students with valid results
{% endblock %}