fix: hide Ready badge on the active quiz, translate to Voorbereid

An active quiz is finalized by definition, so showing both badges was
redundant.
This commit is contained in:
2026-07-08 15:26:24 +02:00
parent 748f51e1a5
commit 15e3ecb2e4
@@ -13,8 +13,7 @@
{{ quiz.name }}
{% if season.activeQuiz == quiz %}
<span class="badge text-bg-light">{{ 'Active'|trans }}</span>
{% endif %}
{% if quiz.isFinalized %}
{% elseif quiz.isFinalized %}
<span class="badge text-bg-success">{{ 'Ready'|trans }}</span>
{% endif %}
</a>