mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-05 15:10:16 +02:00
482ca8be7e
Add a 50/50 or 66/33 split layout to every backoffice page with Dutch instructions explaining how to use Tijd voor de Test. Content covers the overall workflow, quiz finalize/activate flow, and both candidate participation methods (own device vs. shared laptop). Help text lives in dedicated partials under templates/backoffice/help/ and is loaded via Twig include(), keeping page templates clean. All strings use a separate 'instructions' translation domain (instructions+intl-icu.nl.xliff) isolated from the main messages domain. Also updates 'Finalize'-related Dutch translations to use 'Afronden' and adds tooltips to the finalize/unfinalize buttons.
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}) }}">{{ 'Add from XLSX'|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>
|