18 lines
478 B
Twig
18 lines
478 B
Twig
{% extends 'htmx_modal.html.twig' %}
|
|
|
|
{% block title %}Zusätzliche Abspsprachen{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ form_start(form) }}
|
|
<h2 class="font-bold text-lg pb-4">
|
|
Teamer {{ disposition.teamer }}
|
|
</h2>
|
|
<div class="flex flex-col space-y-4 pb-4">
|
|
{{ form_row(form.specialAgreements) }}
|
|
</div>
|
|
<button type="submit" class="btn">
|
|
Aktualisieren
|
|
</button>
|
|
{{ form_rest(form) }}
|
|
{{ form_end(form) }}
|
|
{% endblock %} |