mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-06 07:30:17 +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.
9 lines
531 B
Twig
9 lines
531 B
Twig
<h6>{{ 'Upload quiz via XLSX'|trans({}, 'instructions') }}</h6>
|
|
<p>{{ 'Upload an XLSX file with the questions for this quiz. After uploading you can review, check and finalize the quiz.'|trans({}, 'instructions') }}</p>
|
|
<h6>{{ 'Expected format'|trans({}, 'instructions') }}</h6>
|
|
<ul>
|
|
<li>{{ 'First column: question text'|trans({}, 'instructions') }}</li>
|
|
<li>{{ 'Next columns: answer options'|trans({}, 'instructions') }}</li>
|
|
<li>{{ 'Mark the correct answer in the spreadsheet'|trans({}, 'instructions') }}</li>
|
|
</ul>
|