From 5843547a05e882333aa0ef9a86b14b1915d515e6 Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 27 Apr 2026 12:06:45 +0100 Subject: [PATCH] Add end time display for completed user exams in collection overview --- atlas/templates/atlas/collection_take_overview.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/atlas/templates/atlas/collection_take_overview.html b/atlas/templates/atlas/collection_take_overview.html index 893ceba3..621b1745 100644 --- a/atlas/templates/atlas/collection_take_overview.html +++ b/atlas/templates/atlas/collection_take_overview.html @@ -29,6 +29,9 @@
Review-only collection
{% endif %}
Started: {{ cid_user_exam.start_time }}
+ {% if cid_user_exam.completed %} +
End time: {{ cid_user_exam.end_time|default:"-" }}
+ {% endif %}