mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-05 15:10:16 +02:00
9008f128a6
- Replace 'speelronde' with 'spel' in index and season_add help - Season settings help: remove incorrect claim name is editable, describe actual settings (Show Numbers, Confirm Answers) - quiz_add help: rename 'XLSX-bestand' to 'Excel-bestand', add explanation of WAAR/ONWAAR (Dutch Excel) vs TRUE/FALSE (English Excel) for marking the correct answer - quiz_answer_mapping help: remove em-dashes - quiz_candidates help: clarify that multiple devices and mixed setups (multiple laptops, phones, or a mix) are supported - quiz_question_bank_form help: change 'thema' to 'type vraag' for labels - Rename 'Add from XLSX' to 'Import' in translation and template
27 lines
1.2 KiB
Twig
27 lines
1.2 KiB
Twig
<div class="row">
|
|
<div class="col-md-6 col-12">
|
|
<div class="d-flex align-items-center gap-2 mb-3">
|
|
<a class="btn btn-sm btn-outline-primary"
|
|
href="{{ path('tvdt_backoffice_quiz_add', {seasonCode: season.seasonCode}) }}">{{ 'Import'|trans }}</a>
|
|
<a class="btn btn-sm btn-outline-secondary"
|
|
href="{{ path('tvdt_backoffice_quiz_add_blank', {seasonCode: season.seasonCode}) }}">{{ 'Add blank'|trans }}</a>
|
|
</div>
|
|
<div class="list-group mb-3">
|
|
{% for quiz in season.quizzes %}
|
|
<a class="list-group-item list-group-item-action{% if season.activeQuiz == quiz %} active{% endif %}"
|
|
href="{{ path('tvdt_backoffice_quiz', {seasonCode: season.seasonCode, quiz: quiz.id}) }}">
|
|
{{ quiz.name }}
|
|
{% if quiz.isFinalized %}
|
|
<span class="badge text-bg-success">{{ 'Finalized'|trans }}</span>
|
|
{% endif %}
|
|
</a>
|
|
{% else %}
|
|
{{ 'No quizzes'|trans }}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6 col-12">
|
|
{{ include('backoffice/help/season_tests.html.twig') }}
|
|
</div>
|
|
</div>
|