{% extends 'portal/base.html' %} {% block content %}

Edit student details for {{ student.new_user.first_name }} from class {{ student.class_field.name }} ({{ student.class_field.access_code }})

Edit this student’s name and manage their password and direct access link.
Update name

Remember this is the name they use to log in with, so you should tell them what you’ve changed it to.

{% csrf_token %} {{ name_form.non_field_errors }} {{ name_form.name }} {{ name_form.name.errors }}
Set password

You can set this student's password. Setting the password will also regenerate their direct access link.

{% csrf_token %}

Enter and confirm the password in the boxes below. Try to prevent others from being able to guess the new password when making this decision.

{{ password_form.non_field_errors }} {{ password_form.password }} {{ password_form.password.errors }} {{ password_form.confirm_password }} {{ password_form.confirm_password.errors }}

⟵ Back to Class

{% endblock %}