{% extends 'portal/base.html' %} {% block dashboard %} School / Club {% endblock dashboard %} {% block subNav %} {{ block.super }} {% endblock subNav %} {% 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.

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 or reset password

You can either set this student’s password by clicking ‘Set password’, or you can let us generate a random and secure password by clicking ‘Generate random’.

{% csrf_token %} {{ password_form.non_field_errors }}

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.password }} {{ password_form.password.errors }} {{ password_form.confirm_password }} {{ password_form.confirm_password.errors }}
Cancel

⟵ Back to Class

{% endblock %}