{% extends 'exams/base.html' %} {% load static %} {% load math_tags %} {% block page_title %}School Detailed Results – {{ school.name }}{% endblock %} {% block content %}

School Results – {{ school.name }}

PRINT EXCEL BACK
PRIME MINISTERS OFFICE - REGIONAL ADMINISTRATION AND LOCAL GOVERNMENT (PMO-RALG)
{{ project.name|upper }}
{{ school.school_code }}-{{ school.name|upper }} - {{ school.district.name|upper }}, {{ school.district.region.name|upper }}
{% for div, count in division_counts.items %}
{{ count }}
DIV {{ div }}
{% endfor %}
GPA
{{ school_result.sch_gpa|default:"-"|floatformat:4 }}
RANK (OVERALL)
{{ school_rank|default:"-" }}/{{ overall_total }}
{% for subject in subjects %} {% endfor %} {% for subject in subjects %} {% endfor %} {% for student in students %} {% for score in student.subject_scores %} {% with score_parts=score.split %} {% endwith %} {% endfor %} {% empty %} {% endfor %}
C.NO NAMES SEX COMB
{{ subject.subject_name_eng }}
AVERAGE
AV.
GRADES
POINTS
DIVISION
REP
S G
{{ student.cand_no }} {{ student.name }} {{ student.sex }} {% if student.combination %} {{ student.combination }} {% else %} - {% endif %} {% if score_parts.0 and score_parts.0 != 'X' and score_parts.0 != '' %} {{ score_parts.0 }} {% else %}   {% endif %} {% if score_parts.1 and score_parts.1 != 'X' and score_parts.1 != '' %} {{ score_parts.1 }} {% else %}   {% endif %} {{ student.average|default:"-" }} {{ student.avg_grade|default:"-" }} {{ student.points|default:"-" }} {% if student.division %} {{ student.division }} {% else %} - {% endif %}
No student data available
Total Students: {{ students|length }} | Total Subjects: {{ subjects|length }} | Generated: {% now "Y-m-d H:i:s" %}
{% endblock %}