From 474ad205f66ab2c6114c5cbd68c5e6d895d57edc Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 27 Apr 2026 21:34:30 +0100 Subject: [PATCH] feat: Add feedback overview button visibility based on review mode and exam completion status --- .../atlas/collection_take_overview.html | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/atlas/templates/atlas/collection_take_overview.html b/atlas/templates/atlas/collection_take_overview.html index 7530418a..9e194ab6 100644 --- a/atlas/templates/atlas/collection_take_overview.html +++ b/atlas/templates/atlas/collection_take_overview.html @@ -35,16 +35,18 @@ {% if cid_user_exam.completed %}
End time: {{ cid_user_exam.end_time|default:"-" }}
{% endif %} -
- - {% if total_outstanding_feedback %} - Review Feedback Hub - {% else %} - Open Feedback Hub - {% endif %} - -
+ {% if collection.in_review_mode or cid_user_exam.completed %} +
+ + {% if total_outstanding_feedback %} + Review Feedback Hub + {% else %} + Open Feedback Hub + {% endif %} + +
+ {% endif %}