mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-05 20:44:19 +01:00
This commit introduces a refactored EliminationFactory for better modularity, updates the elimination preparation process, and adds functionality to view eliminations. Backoffice templates and forms have been reorganized, minor translations were corrected, and additional assets like styles and flashes were included for enhanced user experience.
26 lines
683 B
Twig
26 lines
683 B
Twig
{% extends 'backoffice/base.html.twig' %}
|
|
|
|
{% block body %}
|
|
<div class="row">
|
|
<div class="col-md-6 col-12">
|
|
<h2 class="py-2">{{ t('Add a quiz to %name%',{'%name%': season.name})|trans }} </h2>
|
|
{{ form_start(form) }}
|
|
{{ form_row(form.name) }}
|
|
{{ form_row(form.sheet) }}
|
|
<button type="submit" class="btn btn-primary">{{ 'Submit'|trans }}</button>
|
|
{{ form_end(form) }}
|
|
</div>
|
|
<div class="col-md-6 col-12">
|
|
<p class="pt-5">
|
|
Hier kan nog tekst komen met wat uitleg
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block title %}
|
|
|
|
{% endblock %}
|