{m.booking_booking()} | +{m.booking_from()} | +{m.booking_until()} | +{m.booking_event()} | +{m.booking_status()} | ++ |
---|---|---|---|---|---|
+ {#each bookingRequest.bookables.map((a) => a.name) as bookable}
+ {bookable} + {/each} + |
+ {dayjs(bookingRequest.start).format("YYYY-MM-DD HH:MM")} | +{dayjs(bookingRequest.end).format("YYYY-MM-DD HH:MM")} | +{bookingRequest.event} | +
+ |
+
+
+
+
+
+ |
+
+ {#if selectedBooking} + + {@html m.booking_deleteMyAreYouSure({ + bookables: selectedBooking?.bookables + .map(({ name }) => name) + .join(", "), + })} + {/if} +
++ {#if selectedBooking} + + {@html m.booking_deleteAreYouSure({ + name: selectedBooking?.booker?.firstName ?? "", + bookables: selectedBooking?.bookables + .map(({ name }) => name) + .join(", "), + })} + {/if} +
+