{% extends "../base.html" %} {% load crispy_forms_tags %} {% load get_item %} {% block content %}

Result Verification

Assessment: {{ assessment }}
Total Students
{{ batch.results.count }}
in this batch
Sample Size
{{ samples|length }}
scripts selected
Reviewed
{{ reviewed_count|default:0 }}
scripts checked
Status
{{ batch.status }}
current state
Reviewed / Sampled: {{ reviewed_count|default:0 }} / {{ sampled_count|default:0 }} ({{ sampled_progress_percent|default:0 }}%)
Verification Queue
{% csrf_token %}
{% if show_teacher_mark %} {% endif %} {% for result in results %} {% with sample=sample_map|get_item:result.id %} {% if show_teacher_mark %} {% endif %} {% endwith %} {% empty %} {% endfor %}
# StudentTeacher MarkVerifier Mark Status
{{ forloop.counter }}
{{ result.student|make_list|first }}
{{ result.student }} ID: {{ result.student_id|default:"N/A" }}
{{ result.score }} {% if sample and sample.matched == True %} Match {% elif sample and sample.matched == False %} Mismatch {% else %} Pending {% endif %}

No results available for verification.
Rejection Reason
Required if there are mismatches or if you are rejecting the batch.
Back View Report
{% endblock content %}