{% extends 'portal/teach/base_registering.html' %} {% load static %} {% load app_tags %} {% block content %}
{% if classes %}
{% for class in classes %}

It looks like you've already created a class ({{ class.name }}) in your school ({{ user.new_teacher.school.name }})

Add students
{% endfor %}
{% else %}

Create a class

Progress < 2 of 4 >

50% Complete

When you set up a new class, a unique class access code will automatically be generated, with you being identified as the teacher for that class.

{% csrf_token %} {{ form.non_field_errors }}
{{ form.class_name }}
{{ form.class_name.help_text }} {{ form.class_name.errors }}
{{ form.classmate_progress }}
{{ form.classmate_progress.errors }}
{% endif %} {% endblock content %}