{% extends "exams/base.html" %} {% load static %} {% block content %}
{{ subject.subject_code }} - {{ subject.subject_name_eng }} | {{ school.name }} ({{ school.school_code }})
| Grade | Count | Percentage |
|---|---|---|
| A | {{ grade_counts.A|default:"0" }} | {% widthratio grade_counts.A total_students 100 %}% |
| B | {{ grade_counts.B|default:"0" }} | {% widthratio grade_counts.B total_students 100 %}% |
| C | {{ grade_counts.C|default:"0" }} | {% widthratio grade_counts.C total_students 100 %}% |
| D | {{ grade_counts.D|default:"0" }} | {% widthratio grade_counts.D total_students 100 %}% |
| E | {{ grade_counts.E|default:"0" }} | {% widthratio grade_counts.E total_students 100 %}% |
| S | {{ grade_counts.S|default:"0" }} | {% widthratio grade_counts.S total_students 100 %}% |
| F | {{ grade_counts.F|default:"0" }} | {% widthratio grade_counts.F total_students 100 %}% |
| A | {{ grade_counts.A|default:"0" }} | {% widthratio grade_counts.A total_students 100 %}% |
| B | {{ grade_counts.B|default:"0" }} | {% widthratio grade_counts.B total_students 100 %}% |
| C | {{ grade_counts.C|default:"0" }} | {% widthratio grade_counts.C total_students 100 %}% |
| D | {{ grade_counts.D|default:"0" }} | {% widthratio grade_counts.D total_students 100 %}% |
| F | {{ grade_counts.F|default:"0" }} | {% widthratio grade_counts.F total_students 100 %}% |
| A | {{ grade_counts.A|default:"0" }} | {% widthratio grade_counts.A total_students 100 %}% |
| B | {{ grade_counts.B|default:"0" }} | {% widthratio grade_counts.B total_students 100 %}% |
| C | {{ grade_counts.C|default:"0" }} | {% widthratio grade_counts.C total_students 100 %}% |
| D | {{ grade_counts.D|default:"0" }} | {% widthratio grade_counts.D total_students 100 %}% |
| E | {{ grade_counts.E|default:"0" }} | {% widthratio grade_counts.E total_students 100 %}% |
| Pass ({% if academic_level_id == 2 %}A-E{% elif academic_level_id == 1 %}A-D{% else %}A-C{% endif %}) | {{ pass_total }} | {{ pass_percent }}% |
| # | Student Number | Student Name | Sex | Score % | Grade | Points |
|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ student.student_number }} | {{ student.student_name }} | {{ student.sex }} | {{ student.percentage_score|floatformat:2 }}% | {{ student.grade }} | {{ student.points|default:"-" }} |
| No student scores available | ||||||