{% extends "exams/base.html" %} {% load static %} {% block content %}

Region Summary — {{ region.name }} ({{ year }})

Export PDF Export Excel
Total Candidates: {{ totals.total }}
Total Pass: {{ totals.pass }} ({{ totals.pass_pct }}%)
Male: {{ totals.male }}
Female: {{ totals.female }}
{% for d in districts %} {% endfor %}
# District Total Pass Fail Pass % Male Male Pass Female Female Pass
{{ forloop.counter }} {{ d.district_name }} {{ d.total }} {{ d.pass }} {{ d.fail }} {{ d.pass_pct }}% {{ d.male }} {{ d.male_pass|default:0 }} {{ d.female }} {{ d.female_pass|default:0 }}
{% endblock %}