{% extends "base/base.html" %} {% block title %} Manage classlist {% endblock title %} {% block page_heading %} Manage classlist {% endblock page_heading %} {% block main_content %}
Return to assessment preparation page
{% if have_papers_been_printed %}
Papers have been printed, but you can still change the classlist.
{% else %} {% if prenaming %}
Prenaming is enabled, so a classlist is required Disable
{% else %}
Prenaming is not enabled, so a classlist is not required Enable
{% endif %} {% endif %} {% if student_list_present %}
Classlist present with {{ student_list|length }} students: download
{% for row in student_list %} {% endfor %}
Student ID Student Name Paper-number {% if prenaming %} (used if assigned — prenaming enabled) {% else %} (ignored — prenaming disabled) {% endif %}
{{ row.student_id }} {{ row.student_name }} {% if row.paper_number %} {{ row.paper_number }} {% else %} ● {% endif %}
{% else %}

No classlist present — upload classlist

{% csrf_token %}
{% endif %}
{% endblock main_content %}