{% extends 'exams/base.html' %} {% load static %} {% block page_title %}District Results Download - {{ project.name }}{% endblock %} {% block content %}

District Results Download

{{ project.name }} - {{ project.year }}
Back to Projects
{{ total_districts }}
Districts
{{ total_schools }}
Schools
{{ total_students }}
Students
{{ page_obj|length }}
Displayed
Districts with Results {{ page_obj.paginator.count }} Total
{% for district in page_obj %} {% empty %} {% endfor %}
# District Region Schools Students Division Summary GPA Best School Action
{{ forloop.counter0|add:page_obj.start_index }} {{ district.name }} {{ district.region }} {{ district.school_count }} {{ district.total_students }} {% with dc=district.division_counts %} {{ dc.I }} {{ dc.II }} {{ dc.III }} {{ dc.IV }} {{ dc.0 }} {% endwith %} {% if district.avg_gpa != '-' %} {{ district.avg_gpa }} {% else %} - {% endif %} {{ district.best_school|truncatechars:20 }} PDF
No districts with results found.
Tip: Click the PDF button next to each district to download results. Each PDF contains school ranking, division summary, and student details.
{% endblock %}