{% 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 content %} {{ block.super }}
{% if teacher.pending_join_request %}

Join a school


You have a pending request to join {{ teacher.pending_join_request.name }}, {{ teacher.pending_join_request.postcode }}.
Once the administrator of your school or club has approved your request you will be able to continue.

Please note: You may only have one request to join a school or club at a time. If you wish to join another school or club, you must revoke your pending request first.


{% csrf_token %}
{% else %} {% if teacher.school %}

It looks like you’ve already created your school ({{ user.new_teacher.school.name }})

Add a class
{% else %}
{% csrf_token %} {{ create_form.non_field_errors }} {% for field in create_form %} {{ field }} {{ field.errors }} {% endfor %}
{% csrf_token %} {{ join_form.non_field_errors }} {{ join_form.fuzzy_name }} {{ join_form.fuzzy_name.errors }} {{ join_form.chosen_org }} {{ join_form.chosen_org.errors }}
{% endif %} {% endif %} {% endblock content %}