{% extends 'exams/base.html' %} {% load static %} {% block page_title %}ExamScore Standardization - {{ project.name }}{% endblock %} {% block content %}

ExamScore Standardization – {{ project.name }} ({{ project.year }})

Click "Standardize" to add marks to all scores of a paper

Subjects & Papers List
{% for subject in subjects %}

{% for paper in subject.papers %} {% empty %} {% endfor %}
# Paper Code Paper Name Total Students Valid Scores X (Absent) Null Min Max Actions
{{ forloop.counter }} {{ paper.code }} {{ paper.name }} {{ paper.total }} {{ paper.valid_count }} {{ paper.x_count }} {{ paper.null_count }} {{ paper.min_score|default:"-" }} {{ paper.max_score|default:"-" }}
No papers found for this subject
{% empty %}
No subjects found with exam scores
{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}