diff --git a/anatomy/templates/anatomy/exam_cids.html b/anatomy/templates/anatomy/exam_cids.html index 49207c49..5c152616 100644 --- a/anatomy/templates/anatomy/exam_cids.html +++ b/anatomy/templates/anatomy/exam_cids.html @@ -6,11 +6,12 @@

Exam: {{ exam.name }}

- {{cid_user_count}} users. +

{{cid_user_count}} users.

+
    {% for cid in cid_users %} -
  1. {{cid}}
  2. +
  3. {{cid.cid}} [{{cid.passcode}}
  4. {% endfor %}
diff --git a/generic/views.py b/generic/views.py index 94d56ccd..b7d1222f 100644 --- a/generic/views.py +++ b/generic/views.py @@ -435,7 +435,7 @@ class ExamViews(View, LoginRequiredMixin): { "exam": exam, "cid_users": cid_users, - "cid_user_cound": cid_user_count + "cid_user_count": cid_user_count }, )