23 lines
694 B
Twig
23 lines
694 B
Twig
{% extends 'htmx_modal.html.twig' %}
|
|
|
|
{% block title %}Sicher?{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="pb-8">
|
|
Alle nicht gespeicherten Änderungen gehen verloren. Fortfahren?
|
|
</div>
|
|
<div class="flex justify-between">
|
|
<button type="button"
|
|
hx-post="{{ path('app_booking_edit_reload', {id: bookingId}) }}"
|
|
hx-target="body"
|
|
class="button button--small button--primary">
|
|
Ja
|
|
</button>
|
|
<button type="button"
|
|
{{ stimulus_action('modal', 'close') }}
|
|
class="button button--small button--secondary">
|
|
Nein
|
|
</button>
|
|
</div>
|
|
{% endblock %}
|