diff --git a/anatomy/tests/test_anatomy_exams.py b/anatomy/tests/test_anatomy_exams.py
index 3b8e01e3..6eca2334 100644
--- a/anatomy/tests/test_anatomy_exams.py
+++ b/anatomy/tests/test_anatomy_exams.py
@@ -300,11 +300,11 @@ def test_exams(db, client):
search_exam = (
cid_scores_soup.find("div", {"id": "exam-assigned"})
.find("ul", {"class": exam.app_name})
- .find_all("li", attrs={"data-exam-id": exam.pk})
+ .find("li", attrs={"data-exam-id": exam.pk})
)
assert search_exam
assert exam.name in str(search_exam)
- assert "Active" in str(search_exam)
+ assert len(search_exam.find("button", {"class": "start-button"})) > 0
# assert "Active" in assigned_exams # check it is active
invalid_exam = cid_scores_soup.find_all(
diff --git a/generic/templates/generic/cid_group_base.html b/generic/templates/generic/cid_group_base.html
index bb1c837f..58307b9b 100644
--- a/generic/templates/generic/cid_group_base.html
+++ b/generic/templates/generic/cid_group_base.html
@@ -3,28 +3,33 @@
{% block navigation %}
{{block.super}}
-
- Group: {{group.name}}->
{% if group_type == "cid" %}
+
+ Group: {{group.name}}->
{% if not group %}
- Group /
- Edit Users /
- Edit Exams /
- Delete
+ Group /
+ Edit Users /
+ Edit Exams /
+ Delete
{% else %}
- Group /
- Edit Users /
- Edit Exams /
- Delete
+ Group /
+ Edit Users /
+ Edit Exams /
+ Delete
{% endif %}
{% else %}
- Group /
- Edit Users /
- Edit Exams /
- Delete
+
+ {% if group %}
+
+ Group: {{group.name}}->
+ Group /
+ Edit Users /
+ Edit Exams /
+ Delete
+ {% endif %}
{% endif %}
{% endblock %}
\ No newline at end of file
diff --git a/generic/templates/generic/cidusergroup_form.html b/generic/templates/generic/cidusergroup_form.html
index 87df0c35..a9e758ab 100755
--- a/generic/templates/generic/cidusergroup_form.html
+++ b/generic/templates/generic/cidusergroup_form.html
@@ -5,10 +5,10 @@
{% endblock %}
{% block js %}
-{{form.media}}
+ {{form.media}}
-
+
{% endblock %}
@@ -20,28 +20,31 @@
| First name | Last name | Grade | Supervisor | Supervisor email | |
|---|---|---|---|---|---|
| name 1 | last name 1 | email1@email.com | grade 1 | supervisor 1 | Supervisor@email.com |
| name 2 | last name 2 | email2@email.com | grade 2 | supervisor 2 | Supervisor2@email.com |
| name 1 | last name 1 | email1@email.com | ST1 | supervisor 1 | Supervisor@email.com |
| name 2 | last name 2 | email2@email.com | ST2 | supervisor 2 | Supervisor2@email.com |
This page shows the exam(s) to which you have access.
+When an exam is available to take it will have a "Start" button next to it.
+Once you have submitted answers you will be able to view them from the Exam results section. (Please note: although your answers will be visible as soon as they are submitted, correct answers will only be available when the exam results have been published.)
+If you have not submitted any answer for an exam it will not appear in the Exam Results section below. In this case you can still review the pubilshed results by following the "Results Published" link in the assigend exams section.
+