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

Bulk Paper Registration - {{ project.name }}

Paper List

{{ total_schools|default:0 }}

Schools

{{ total_students|default:0 }}

Students

{{ total_papers|default:0 }}

Paper Registrations

{{ total_schools|default:0 }}

Active Schools
Excel format:
student_number | paper_code1 | paper_code2 | ... | paper_code16
        
Each column after student_number should contain paper codes (e.g., 11/1, 12/1, 13/1)
Download Excel Template
Schools with Students
{% for item in schools %} {% empty %} {% endfor %}
# School Code School Name District Region Students Papers Actions
{{ forloop.counter }} {{ item.school.school_code }} {{ item.school.name|truncatechars:35 }} {{ item.school.district.name }} {{ item.school.district.region.name }} {{ item.student_count }} {{ item.paper_count }} Manage

No schools found with students in this project.

Upload Students First
{% endblock %}