21 lines
709 B
Twig
21 lines
709 B
Twig
{% extends 'htmx_modal.html.twig' %}
|
|
|
|
{% block title %}Einteilung{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="pb-4">
|
|
Möchtest du <strong>{{ application.teamer }}</strong> wirklich für den Einsatz <strong>{{ application.assignment.destination}}</strong> einteilen?
|
|
</div>
|
|
{{ form_start(form) }}
|
|
{{ form_row(form.specialAgreements) }}
|
|
<div class="mt-6 flex items-center justify-between">
|
|
<button type="submit" class="btn">
|
|
Ja
|
|
</button>
|
|
<button type="button" class="btn btn--secondary" {{ stimulus_action('modal', 'close') }}>
|
|
Abbrechen
|
|
</button>
|
|
</div>
|
|
{{ form_rest(form) }}
|
|
{{ form_end(form) }}
|
|
{% endblock %} |