{% load math_tags %}
|
PRIME MINISTER'S OFFICE - REGIONAL ADMINISTRATION AND LOCAL GOVERNMENT
{{ project.name|upper }}
|
| {{ school_data.school.school_code }} | {{ school_data.school.name|upper }} | {{ school_data.school.district.name|upper }} - {{ school_data.school.district.region.name|upper }} |
| I | II | III | IV | 0 | GPA | RANK(OVERALL) | ||||
| {{ school_data.division_counts.I }} | {{ school_data.division_counts.II }} | {{ school_data.division_counts.III }} | {{ school_data.division_counts.IV }} | {{ school_data.division_counts.0 }} | {{ school_data.school_result.sch_gpa|default:"-"|floatformat:4 }} | {{ school_data.school_rank|default:"-" }}/{{ school_data.overall_total }} | ||||
| C.NO | NAMES | SEX | COMB | {% for subject in subjects %}
{{ subject.subject_name_eng }}
|
{% endfor %}
AVERAGE
|
AV.
GRADES |
POINTS
|
DIVISION
|
|
|---|---|---|---|---|---|---|---|---|---|
| {{ student.cand_no }} | {{ student.name }} | {{ student.sex }} | {% if student.combination %} {{ student.combination }} {% endif %} | {% for score in student.subject_scores %} {% with score_parts=score.split %}{% 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 %} | {% endwith %} {% endfor %}{{ student.average|default:"-" }} | {{ student.avg_grade|default:"-" }} | {{ student.points|default:"-" }} | {% if student.division %} {{ student.division }} {% else %} - {% endif %} |