{% extends 'generic/cid_group_base.html' %} {% block content %}

Group: {{ group.name }}

This page shows an overview of the candidates and exams associated with the group.
Users in group
{{ users|length }}
Help
Once a candidate has been added to a group and the group has been added to an exam individual candidates can be allocated to the exam. Adding a group to an exam does not automatically give group members access — they must be added.

Users

Sort by:
{% if group_type == 'cid' %}
{% csrf_token %}
{% endif %}
{% if users %} {% include 'generic/partials/group_users_list.html' with users=users group_type=group_type %} {% else %}

This group has no users. {% if group_type == "cid" %} You can create or add users here. {% endif %}

{% endif %}

Exams

The group is associated with these exams. Adding the group to an exam helps add members quickly but does not grant automatic access.
{% if group_type == "cid" %} Add more here. {% else %} Add more here. {% endif %}
{% with group.GetGroupExams as exam_map %} {% for key, value in exam_map.items %}
{{ key }}
{% for exam in value %}
{{ exam }}
{{ exam }}
{% if group_type == "cid" %} Edit candidates {% else %} Edit candidates {% endif %}
{% if group_type == "cid" %}
{% else %}
{% endif %}
{% if group_type == "cid" %} (Cid candidate count: {{ exam.valid_cid_users.count }}) {% else %} (User candidate count: {{ exam.valid_user_users.count }}) {% endif %}
{% endfor %}
{% endfor %} {% endwith %}
{% endblock %} {% block js %} {% endblock %}