mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-05 23:20:18 +02:00
18a6090366
* Add Penalty Seconds on tests * Refactors and start of candidate answer relation * Add breadcrumbs and UI consistency updates across backoffice templates * Add breadcrumbs and UI consistency updates across backoffice templates * Add Dutch translations for email verification and security messages * Rector * Refactor for code consistency and type safety assertions across repositories and entities * Refactor candidate-related logic to optimize queries, improve template separation, and add "Answer Mapping" functionality. * Cleanup * Update Symfony * Add coderabbit config * Fixes from coderabbit
18 lines
529 B
Twig
18 lines
529 B
Twig
{% extends 'base.html.twig' %}
|
|
{% block importmap %}{{ importmap('backoffice') }}{% endblock %}
|
|
{% block title %}Tijd voor de test | {% endblock %}
|
|
{% block nav %}{{ include('backoffice/nav.html.twig') }}{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="container">
|
|
<div class="mt-3">
|
|
{% block breadcrumbs %}{% endblock %}
|
|
</div>
|
|
{{ include('flashes.html.twig') }}
|
|
<div class="mb-5">
|
|
{% block body %}
|
|
{% endblock body %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|