{% extends 'portal/base.html' %} {% load staticfiles %} {% load app_tags %} {% block dashboard %} School / Club {% endblock dashboard %} {% block css %} {{ block.super }} {% endblock css %} {% block scripts %} {{ block.super }} {% endblock scripts %} {% block pageID %}id="homeWrapper"{% endblock %} {% block subNav %} {{ block.super }} {% endblock subNav %} {% block content %} {% include "portal/partials/popup.html" %} {{ block.super }}

{{ user|make_into_username }}, {{ class.name }} ({{ class.access_code }})

Here you can view and manage all of your students within this class. You can add new students, transfer existing students to another one of your classes or to another teacher within your school or club, or remove students altogether.

Add students

Current students

Select an individual student to change their details, including their name and password.

Select multiple students using the checkboxes to reset their passwords, move them to another class, release them from your school and make them an independent Code for Life user, or delete them permanently.

{% for student in students %} {% endfor %}

Select

Select all

Student details

Status

Logged in

Logged out

{{ student.new_user.first_name }}

Edit
{% if student.logged_in %}
{% else %}
{% endif %}

⟵ Back to Classes

Add new students

Add the students’ names to the box below with one student name per line. Students’ names will be used in their login details, and so each name should be unique.

You have the option to use students’ first names only, or first and last names. Students’ names and the class access code are required to sign in.

{% csrf_token %} {{ new_students_form.non_field_errors }} {{ new_students_form.names.errors }} {{ new_students_form.names }}

Edit other class settings

Here you may change the name of the class, transfer the class to another teacher in the school or club, create permissions for the class to accept requests from external students, or delete classes for which there are no students. You can also create permissions for students in this class to see their classmates’ progress.

Edit settings

⟵ Back to Classes

{% endblock content %}