From 15e3ecb2e4a8db070bd06530d058d5ca7d9e2a83 Mon Sep 17 00:00:00 2001 From: Marijn Doeve Date: Wed, 8 Jul 2026 15:26:24 +0200 Subject: [PATCH] fix: hide Ready badge on the active quiz, translate to Voorbereid An active quiz is finalized by definition, so showing both badges was redundant. --- templates/backoffice/season/tab_tests.html.twig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/templates/backoffice/season/tab_tests.html.twig b/templates/backoffice/season/tab_tests.html.twig index ffa3217..ce5ab51 100644 --- a/templates/backoffice/season/tab_tests.html.twig +++ b/templates/backoffice/season/tab_tests.html.twig @@ -13,8 +13,7 @@ {{ quiz.name }} {% if season.activeQuiz == quiz %} {{ 'Active'|trans }} - {% endif %} - {% if quiz.isFinalized %} + {% elseif quiz.isFinalized %} {{ 'Ready'|trans }} {% endif %}