This commit is contained in:
2026-08-20 08:24:24 +00:00
parent 45730c4c57
commit 456393ba2e
30 changed files with 558 additions and 93 deletions
@@ -2,11 +2,17 @@ SELECT
id,
platz_id,
titel AS title,
startzeit AS start,
endzeit AS end,
DATE_FORMAT(
startzeit,
'%Y-%m-%d %H:%i:%s'
) AS start,
DATE_FORMAT(
endzeit,
'%Y-%m-%d %H:%i:%s'
) AS end,
gebucht_von,
erstellt_am
FROM `buchungen`
WHERE platz_id =
{{ appsmith.store.selectedSeatId }}
WHERE `platz_id` =
'{{ appsmith.store.selectedSeatId }}'
ORDER BY startzeit;