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

Add external student to class {{ class.name }} ({{ class.access_code }})

Students currently in class

{% if students %}

{{ student.new_user.username }}, the new external student, will be joining students in the class {{ class.name }} ({{ class.access_code }}).

{% for currentstudent in students %} {% endfor %}

Student Name

{{ currentstudent.new_user.first_name }}

{% else %}

The new external student {{ student.new_user.username }} is joining the class {{ class.name }} ({{ class.access_code }}) in which there are currently no other students.

{% endif %}

Add external student

Please confirm the name of the new external student joining your class. Their name will be used in their new login details, so please ensure it is different from any other existing student in the class.

{% csrf_token %} {{ form.non_field_errors }} {% for field in form %} {{ field }} {{ field.errors }} {% endfor %}
Cancel

⟵ Back to Class

{% endblock %}