CID candidates
{% if cid_users %}
{{cid_user_count}} CID candidates.
{% for cid in cid_users %}
{{cid.name}}
Email: {{cid.email}}
{% endfor %}
{% else %}
This exam has no CID candidates. Add some with the below link.
{% endif %}
Edit Exam CIDs
User candidates
{% if user_users %}
{{user_user_count}} User candidates.
{% for user in user_users %}
-
{% if request.user.is_superuser %}
{% endif %}
{{user.username}}
Email: {{user.email}}
{% endfor %}
{% else %}
This exam has no User candidates. Add some with the below link.
{% endif %}
Edit Exam Users