{% extends 'portal/base.html' %} {% block dashboard %} School / Club {% endblock dashboard %} {% block content %}

Move students from class {{ old_class.name }} ({{ old_class.access_code }})

Move students to another class.

Students currently in destination class

{% if new_class_students %}

The following students are in class {{ new_class.name }} ({{ new_class.access_code }}) into which you are about to move students from class {{ old_class.name }} ({{ old_class.access_code }}).

{% for student in new_class_students %} {% endfor %}

Student Name

{{ student.new_user.first_name }}

{% else %}

There are no students in the class {{ new_class.name }} ({{ new_class.access_code }}).

{% endif %}

Students to transfer

Please confirm the names of the following students being moved to class {{ new_class.name }} ({{ new_class.access_code }}) from class {{ old_class.name }} ({{ old_class.access_code }}). Their names will be used in their new login details, so please ensure it is different from any other existing students in the class.

{% csrf_token %} {{ formset.management_form }} {{ formset.non_form_errors }} {% for dict in formset.errors %} {% for error in dict.values %} {{ error }} {% endfor %} {% endfor %} {% for form in formset %} {% endfor %}

Original Student Name

New Student Name

{{ form.orig_name.value }}{{ form.orig_name }} {{ form.name }}
Cancel

⟵ Back to Class

{% endblock %}