{% extends 'portal/teach/base.html' %} {% load static %} {% load app_tags %} {% block scripts %} {{block.super}} {% endblock %} {% block nav_teacher_school %}School | Club{% endblock nav_teacher_school %} {% block content %}

School | Club


Manage my school or club ({{ teacher.school.name }})


{% if is_admin %}

As an administrator of your school or club, you can select other teachers to whom you can provide or revoke administrative rights. You can also remove teachers from your school or club if they leave, and respond to requests from new teachers joining your organisation.

{% else %}

You can see which other teachers in your school or club are registered here. Should you need to leave the school or club, you can do so below.

{% endif %}

Teachers who are part of your school or club


The following teachers are in your school or club.

{% if is_admin %}

Select 'Remove' to delete a teacher from your school or club. You will be able to move any existing classes assigned to that teacher to other teachers in your school or club.

If another teacher is having problems with their Two Factor Authentication, you can disable it for them by selecting 'Disable 2FA'. We strongly recommend that administrators who are using 2FA ensure there is another administrator who will be able to disable their 2FA should they have problems with their smartphone or tablet.

You can also manage administrator rights by clicking the 'Make non-admin' and 'Make admin' buttons.

{% endif %} {% if is_admin %} {% endif %} {% for coworker in coworkers %} {% if coworker.new_user != user and is_admin %} {% else %} {% if is_admin %} {% endif %} {% endif %} {% endfor %}
Name Administrator StatusActions
{{ coworker.title }} {{ coworker.new_user.first_name }} {{ coworker.new_user.last_name }} {% if coworker.new_user == user %}(you){% endif %} {% if coworker.is_admin %}Administrator{% else %}Standard Teacher{% endif %}{% if coworker.is_admin or is_admin %} ({{ coworker.new_user.email|emaildomain }}){% endif %} {% if coworker.is_admin %}
{% csrf_token %}
{% else %} Make admin {% endif %}
{% if coworker.new_user|has_2FA %}{% endif %}

{% if is_admin %}

Teachers who have made a request to join your school or club


{% if join_requests %}

The following teachers have requested to join your school or club. Use the email address to verify their identity, selecting the 'Allow' button to join your organisation or 'Deny' button to reject their request. Do not accept requests that you were not expecting, or that are from an unknown source.

{% for join_request in join_requests %} {% endfor %}
Name Email address Actions
{{ join_request.title }} {{ join_request.new_user.first_name }} {{ join_request.new_user.last_name }} {{ join_request.new_user.email }}
{% csrf_token %}
{% csrf_token %}

{% else %}

No teachers have currently requested to join your school or club.

{% endif %}

Change the details of your school or club


Update your school or club's name and/or postcode.

These details are used to allow other teachers to join your team.

{% csrf_token %} {{ form.non_field_errors }} {% for field in form %} {{ field.errors }} {{ field }} {% endfor %}
{% else %}
{% endif %} {% endblock %}