From 81b29eca1d90e26f7d8a8191f263f9479c2b1672 Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 12 Dec 2021 23:03:22 +0000 Subject: [PATCH] . --- anatomy/templates/anatomy/exam_cids.html | 5 +++-- generic/views.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) 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 }, )