From b8b50e6d50cd3816cf7099872e5275a5f24c4f55 Mon Sep 17 00:00:00 2001 From: Marijn Doeve Date: Wed, 8 Jul 2026 15:33:59 +0200 Subject: [PATCH] fix: right-align quiz status badges Puts the badge at the end of the row via ms-auto instead of leading the quiz name. --- templates/backoffice/season/tab_tests.html.twig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/backoffice/season/tab_tests.html.twig b/templates/backoffice/season/tab_tests.html.twig index 42b5607..99ade46 100644 --- a/templates/backoffice/season/tab_tests.html.twig +++ b/templates/backoffice/season/tab_tests.html.twig @@ -10,12 +10,12 @@ {% for quiz in season.quizzes %} - {% if season.activeQuiz == quiz %} - {{ 'Active'|trans }} - {% elseif quiz.isFinalized %} - {{ 'Ready'|trans }} - {% endif %} {{ quiz.name }} + {% if season.activeQuiz == quiz %} + {{ 'Active'|trans }} + {% elseif quiz.isFinalized %} + {{ 'Ready'|trans }} + {% endif %} {% else %} {{ 'No quizzes'|trans }}