{% extends 'portal/teach/base_registering.html' %} {% load staticfiles %} {% load app_tags %} {% block css %} {{ block.super }} {% endblock css %} {% block scripts %} {{ block.super }} {% endblock scripts %} {% block pageID %}id="homeWrapper"{% endblock %} {% block createJoinSchoolStep %}

Step doneCreate / Join school

{% endblock createJoinSchoolStep %} {% block createClassStep %}

Step doneCreate class

{% endblock createClassStep %} {% block addStudentsStep %}

Step in progressAdd students

{% endblock addStudentsStep %} {% block content %} {{ block.super }}

{{ user.new_teacher.school.name }}

{% if classes %} {% for class in classes %}

Add students to class: {{ class.name }}

{% endfor %} {% else %}

It doesn’t look like you have any classes assigned to you. To create a class, use the ‘New Class’ box on the right.

{% endif %}

Add the students’ names to the box 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 the use the 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 }}
{% endblock content %}