From e8a8fb3f54584c669b88d9ceb565f11aad3880c4 Mon Sep 17 00:00:00 2001 From: Marijn Doeve Date: Wed, 8 Jul 2026 15:30:34 +0200 Subject: [PATCH] fix: align quiz status badges to the left of the row Previously the badge trailed the quiz name, so its position shifted with the name's length. Placing it first keeps it at a consistent left edge across all rows. --- templates/backoffice/season/tab_tests.html.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/backoffice/season/tab_tests.html.twig b/templates/backoffice/season/tab_tests.html.twig index ce5ab51..42b5607 100644 --- a/templates/backoffice/season/tab_tests.html.twig +++ b/templates/backoffice/season/tab_tests.html.twig @@ -8,14 +8,14 @@
{% for quiz in season.quizzes %} - - {{ quiz.name }} {% if season.activeQuiz == quiz %} {{ 'Active'|trans }} {% elseif quiz.isFinalized %} {{ 'Ready'|trans }} {% endif %} + {{ quiz.name }} {% else %} {{ 'No quizzes'|trans }}