{% extends 'redesign/teach_new/base_logged_in.html' %} {% load staticfiles %} {% load app_tags %} {% block dashboard %} School / Club {% endblock dashboard %} {% block css %} {{ block.super }} {% endblock css %} {% block scripts %} {{ block.super }} {% endblock scripts %} {% block pageID %}id='homeWrapper'{% endblock %} {% block subNav %} {{ block.super }} {% if is_admin and join_requests %} {% endif %} {% endblock subNav %} {% block content %} {{ block.super }}

Your school: {% if user.new_teacher.school %} {{ user.new_teacher.school.name }} ({{ user.new_teacher.school.postcode }}){% endif %}

{% 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.

{% csrf_token %}
{% endif %}
{% if is_admin %}

These teachers are already part of your school or club

{% for coworker in coworkers %} {% if coworker.new_user != user %} {% endif %} {% else %} {% endif %} {% endfor %}

Name

Administrator status

Status actions

{{ 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 %} {% else %} {% if coworker.new_user|has_2FA %} {% endif %}

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.

{% else %}

These teachers are already part of your school or club

{% for coworker in coworkers %} {% endfor %}

Name

Administrator status

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

{% endif %} {% if is_admin %} {% if join_requests %}

These teachers have requested to join your school or club

{% if join_requests %} {% 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 }}

Allow Deny
{% else %}

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

{% endif %}
{% endif %}

Change 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 %} {{ update_school_form.non_field_errors }} {% for field in update_school_form %} {{ field }} {{ field.errors }} {% endfor %}
{% endif %}

Classes

Here is a list of all the classes you teach. Add a classing using the ‘New Class’ box, or manage a particular class by clicking on the class name or access code. You can accept or deny requests from independent students wanting to join one of your classes.

Add class

Current classes

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

Class name

Access code

Action

{{ class.name }}

{{ class.access_code }}

Edit class
{% else %}

It doesn't look like you have any classes assigned to you. To create a class, use the 'New Class' box below.

{% endif %}

External requests to join your classes

External, or independent students may request to join your classes, if the student has been given a Class Access Code, and provided you have enabled external requests for that class.

No students have currently requested to join your classes.

Create a new class

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 %} {{ create_class_form.non_field_errors }}
{{ create_class_form.class_name }} {{ create_class_form.class_name.errors }}
{{ create_class_form.classmate_progress }} {{ create_class_form.classmate_progress.errors }}

Your account

You may update your account details here, including your name, password and email address. Should you update your email address, verification will be required.

Update details

{% csrf_token %} {{ update_account_form.non_field_errors }}
{{ update_account_form.title }} {{ update_account_form.title.errors }}
{{ update_account_form.first_name }} {{ update_account_form.first_name.errors }}
{{ update_account_form.last_name }} {{ update_account_form.last_name.errors }}
{{ update_account_form.email }} {{ update_account_form.email.errors }}
{{ update_account_form.password }} {{ update_account_form.password.errors }}
{{ update_account_form.confirm_password }} {{ update_account_form.confirm_password.errors }}
{{ update_account_form.current_password }} {{ update_account_form.current_password.errors }}

Two Factor Authentication

Use your smartphone or tablet to enhance your account’s security.

{% if user|has_2FA %}

Backup tokens

If you don’t have your smartphone or tablet with you, you can access your account using backup tokens. {% if backup_tokens == 1 %} You have only one backup token remaining. {% else %} You have {{ backup_tokens }} backup tokens remaining. {% endif %}

View and create backup tokens for your account.

Disable Two Factor Authentication

We recommend you to continue using Two Factor Authentication, however you can disable two factor authentication for your account.

{% else %}

Find out more about Two Factor Authentication and how it helps keep your account secure.

{% endif %}
{% endblock content %}