21 lines
732 B
HTML
21 lines
732 B
HTML
{% extends exam.get_app_name|add:'/exams.html' %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% 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 %}
|
|
{{ form|crispy }}
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
</form>
|
|
|
|
{% endblock content %}
|