{% extends 'portal/teach/base.html' %} {% load static %} {% load app_tags %} {% block nav_teacher_classes %}Classes{% endblock nav_teacher_classes %} {% block scripts %} {{block.super}} {% endblock %} {% block content %}

Classes


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

Here you can view and manage all of your students within each of your classes. We've created reminder cards which includes each students login details for you to print out, meaning they won't forget and you don't have to remember this for them. 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.

Current students

{% if students %}

See what students are in the class below. You can tell who's logged in by the red and green lights.

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

Select mulitple 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.

You can also select all the students in the class by using the checkbox at the top of the table.

{% for student in students %} {% endfor %}
Select All
Student Name
{% if student.logged_in %}{% else %}{% endif %} {{ student.new_user.first_name }}

(0/{{ num_students }} selected)
{% else %}

There are no students in this class. Add some students to get started.

{% endif %}

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
{% endblock %}