{% extends 'base.html' %} {% load get_item %} {% block page_title %}CA Records: {{ task.title }}{% endblock page_title %} {% block content %} {% include 'secondary/_nav.html' %}

{{ task.title }} - {{ task.subject }} - {{ task.academic_class }}

{% csrf_token %} {% for student in students %} {% with record=records_map|get_item:student.id %} {% endwith %} {% empty %} {% endfor %}
Student Score / {{ task.max_score }} Comment Evidence Ref Status
{{ student.student_name }} {% if record %} {{ record.get_moderation_status_display }} {% if record.is_locked %}Locked{% endif %} {% else %} - {% endif %}
No students found in this class.
Back
{% endblock content %}