{% extends 'portal/base.html' %} {% load static %} {% block subNav %} {% include "portal/partials/teacher_non_dashboard_subnav.html" %} {% endblock subNav %} {% block content %}

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

< Back to Edit class

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 }} {{ name_form.name.help_text }}
Update 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.password.help_text}}
{{ password_form.confirm_password }}
{{ password_form.confirm_password.errors }} {{ password_form.confirm_password.help_text }}
{% endblock %}