feat: refactored accommodation booking status model

This commit is contained in:
Björn Fromme
2026-08-19 11:46:52 +02:00
parent e8accbb3ed
commit 5a3957e143
42 changed files with 1190 additions and 277 deletions
@@ -0,0 +1,16 @@
{% extends 'htmx_confirmation_modal.html.twig' %}
{% block title %}{{ booking.recordLabel }} absagen{% endblock %}
{% block content %}
<div>
Möchtest du {{ booking.acceptedAt is not null ? 'die Buchung' : 'das Angebot' }} für
<em>{{ booking.groupName }}</em> absagen?
{% if booking.open %}
Das versendete Angebot kann danach nicht mehr angenommen werden.
{% endif %}
Der Kunde wird nicht automatisch benachrichtigt.
</div>
{% endblock %}
{% block button_confirm %}Absagen{% endblock %}