From 83e8c14f312a60ae35e577a83c4339231a795369 Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 8 Sep 2025 10:50:18 +0100 Subject: [PATCH] Enhance navigation buttons for previous and next candidates with improved styling and accessibility features --- shorts/templates/shorts/mark_answer.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/shorts/templates/shorts/mark_answer.html b/shorts/templates/shorts/mark_answer.html index 33c0275b..e8b9df9d 100644 --- a/shorts/templates/shorts/mark_answer.html +++ b/shorts/templates/shorts/mark_answer.html @@ -154,13 +154,16 @@ Return to question overview, marking overview
+ {% if previous_answer_id %} - Previous - candidate + Previous candidate + {% else %} + Previous candidate {% endif %} {% if next_answer_id %} - Next - candidate + Next candidate + {% else %} + Next candidate {% endif %} {% endif %}