232 lines
16 KiB
Twig
232 lines
16 KiB
Twig
{% extends 'layout.html.twig' %}
|
|
|
|
{% block content %}
|
|
{% include '_partials/_flashes.html.twig' %}
|
|
<h1>Neue Buchung</h1>
|
|
<div class="grid grid-cols-3 gap-8">
|
|
<div class="col-span-2">
|
|
<h2>Teilnehmer</h2>
|
|
{{ form_start(form) }}
|
|
{% do form.participants.setRendered %}
|
|
{# This block contains the participant form fields #}
|
|
{% block participants_form %}
|
|
<div id="participants-form" class="space-y-8 pb-8"{% if htmx_oob_swap is defined and htmx_oob_swap %} hx-swap-oob="true"{% endif %}>
|
|
{% for participant in form.participants %}
|
|
{% set participantDataValid = participant.vars.valid %}
|
|
<div class="{{ html_classes('border rounded px-4 py-2', { 'border-gray-300': participantDataValid, 'border-red-700': not participantDataValid }) }}" {{ stimulus_controller('toggle', {'storageKey': 'participant_' ~ loop.index0, 'open': participant.vars.valid == false}, { 'closed': 'hidden' }) }}>
|
|
<fieldset>
|
|
<legend class="w-full flex items-center justify-between">
|
|
<span class="font-bold text-xl">Teilnehmer:in {{ loop.index }}</span>
|
|
<button type="button" tabindex="0" {{ stimulus_action('toggle', 'toggle') }}>
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6" {{ stimulus_target('toggle', 'icon') }}>
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M8.25 4.5l7.5 7.5-7.5 7.5" />
|
|
</svg>
|
|
</button>
|
|
</legend>
|
|
<div class="hidden py-4" {{ stimulus_target('toggle', 'toggle') }}>
|
|
<div class="grid grid-cols-2 gap-4 pb-4">
|
|
{{ form_row(participant.firstName) }}
|
|
{{ form_row(participant.lastName) }}
|
|
{{ form_row(participant.dateOfBirth, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
{{ form_row(participant.gender) }}
|
|
{{ form_row(participant.nationality) }}
|
|
</div>
|
|
<div class="grid grid-cols-2 gap-4">
|
|
{{ form_row(participant.email) }}
|
|
{{ form_row(participant.mobile) }}
|
|
</div>
|
|
{% if participant.bodyDimensions is defined %}
|
|
<div class="grid grid-cols-2 gap-4">
|
|
{{ form_row(participant.bodyDimensions.height) }}
|
|
{{ form_row(participant.bodyDimensions.shoeSize) }}
|
|
{{ form_row(participant.bodyDimensions.weight) }}
|
|
</div>
|
|
{% endif %}
|
|
<div class="grid grid-cols-2 gap-4">
|
|
{{ form_row(participant.assignedRoomId, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
{% if participant.remarksRoom is defined %}
|
|
{{ form_row(participant.remarksRoom) }}
|
|
{% endif %}
|
|
</div>
|
|
|
|
{# Services hint - shown when date of birth is missing #}
|
|
{% set participantData = participant.vars.data %}
|
|
{% set hasDateOfBirth = participantData and participantData.dateOfBirth %}
|
|
|
|
{% if not hasDateOfBirth %}
|
|
<div class="mb-4 p-4 bg-blue-50 border border-blue-200 rounded-lg">
|
|
<div class="flex items-center">
|
|
<svg class="w-5 h-5 text-blue-600 mr-2" fill="currentColor" viewBox="0 0 20 20">
|
|
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clip-rule="evenodd"></path>
|
|
</svg>
|
|
<p class="text-sm text-blue-800">
|
|
Zusatzleistungen sind erst nach Angabe des Geburtsdatums buchbar
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="grid grid-cols-2 gap-4">
|
|
{% if participant.skiPass is defined %}
|
|
{{ form_row(participant.skiPass, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
{% endif %}
|
|
{% if participant.courses is defined %}
|
|
{{ form_row(participant.courses, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
{% endif %}
|
|
{% if participant.additionalServices is defined %}
|
|
{{ form_row(participant.additionalServices, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
{% endif %}
|
|
{% if participant.rentals is defined %}
|
|
{{ form_row(participant.rentals, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
{% endif %}
|
|
{% if participant.rentalInsurance is defined %}
|
|
{{ form_row(participant.rentalInsurance, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
{% endif %}
|
|
{% if participant.board is defined %}
|
|
{{ form_row(participant.board, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
{% endif %}
|
|
</div>
|
|
|
|
{# Transportation Services Section #}
|
|
<div class="mt-6 border-t pt-4">
|
|
<h3 class="font-semibold text-lg mb-4">Anreise</h3>
|
|
<div class="grid grid-cols-2 gap-4">
|
|
<div>
|
|
{% if participant.transportationOutbound is defined %}
|
|
{{ form_row(participant.transportationOutbound, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
{% endif %}
|
|
{% if participant.pickupOutbound is defined %}
|
|
<div class="mt-4">
|
|
{{ form_row(participant.pickupOutbound, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
</div>
|
|
{% endif %}
|
|
{#
|
|
Parking field shares this space with pickupOutbound since they're mutually exclusive:
|
|
- pickupOutbound: shown only when transportationOutbound is BUS
|
|
- parking: shown only when transportationOutbound is PKW (car)
|
|
This optimizes the layout by utilizing the same visual space.
|
|
#}
|
|
{% if participant.parking is defined %}
|
|
<div class="mt-4">
|
|
{{ form_row(participant.parking, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
<div>
|
|
{% if participant.transportationInbound is defined %}
|
|
{{ form_row(participant.transportationInbound, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
{% endif %}
|
|
{% if participant.pickupInbound is defined %}
|
|
<div class="mt-4">
|
|
{{ form_row(participant.pickupInbound, {
|
|
'attr': {
|
|
'hx-trigger': 'change',
|
|
'hx-post': path('app_booking_create_step_2_refresh'),
|
|
'hx-swap': 'none'
|
|
}
|
|
}) }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|
|
<div class="flex justify-between">
|
|
<a href="{{ path('app_booking_create_step_1') }}" class="button bg-button bg-button--secondary">Zurück</a>
|
|
<button type="submit" class="button bg-button bg-button--secondary">Weiter</button>
|
|
</div>
|
|
{{ form_rest(form) }}
|
|
{{ form_end(form) }}
|
|
</div>
|
|
{% block booking_summary %}
|
|
<div id="booking-summary"{% if htmx_oob_swap is defined and htmx_oob_swap %} hx-swap-oob="true"{% endif %}>
|
|
{% include 'booking/_summary.html.twig' with {
|
|
'bookingCreateDto': bookingCreateDto,
|
|
'participantCount': participantsCount,
|
|
'groupedSelectedRooms': groupedSelectedRooms,
|
|
'assignmentCounts': assignmentCounts
|
|
} %}
|
|
</div>
|
|
{% endblock %}
|
|
</div>
|
|
{% endblock %}
|