22 lines
708 B
HTML
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 %}
|