{% 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.
{% endif %} {% if student_list_present %}
Classlist present with {{ student_list|length }} student{{ student_list|length|pluralize }}: download
{% for row in student_list %} {% endfor %}
Student ID Student Name Prenaming Paper-number
{{ row.student_id }} {{ row.student_name }} {% if row.paper_number is not None %}{{ row.paper_number }}{% endif %}
{% else %}

No classlist present — upload classlist

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