{% extends 'portal/teach/base.html' %} {% load app_tags %} {% block nav_teacher_classes %}Classes{% endblock nav_teacher_classes %} {% block content %}
Here is a list of all the classes you teach. Add a class using the 'New Class' box, or manage a particular class by clicking on the class name or access code. You can also accept or deny requests from indpendent students wanting to join one of your classes.
Class Name | Access Code |
---|---|
{{ class.name }} | {{ class.access_code }} |
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 %}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.
External, or independent students may request to join your classes, if the student has been given a Class Access Code from the above table, and provided you have enabled external requests for that class.
{% if requests %}The following users have made requests to join your classes. If you accept a request, you will be able to choose a name that is unique for the user in the class and then pass on their new login details. At this point, you will be able to manage them like any other student.
To conform to our security policy, the requested student's username and email will be deleted on acceptance. These details are displayed here to enable you to identify them as genuine.
You should not accept a request from a student whose email and username you do not recognise, or if you weren't expecting such a request.
Username | Name | Class | |||
---|---|---|---|---|---|
{{ join_request.new_user.username }} | {{ join_request.new_user.first_name }} | {{ join_request.new_user.email }} | {{ join_request.pending_class_request.name }} ({{ join_request.pending_class_request.access_code }}) | Accept | Reject |
No students have currently requested to join your classes.
{% endif %} {% endblock %}