Files
penracourses/generic/templates/generic/exam_groups_edit.html
T
2024-08-12 10:56:20 +01:00

22 lines
708 B
HTML

{% extends exam.get_app_name|add:'/exams.html' %}
{% block content %}
<h1>Exam: {{exam}}</h1>
{% include "generic/exam_candidate_headers.html" %}
<h3>Groups</h3>
<p>Groups are used to control will users are available for the exam. If a user is not in a group, they will not be available to add to the exam.</p>
<p>Muliple groups can be added to an exam.</p>
<p>Two type of groups exist. CID groups are used for external candidates. User groups are used for internal candidates.</p>
<form action="" method="post">
{% csrf_token %}
<table>
{{ form }}
</table>
<input type="submit" value="Submit">
</form>
{% endblock content %}