From b7aaea5fe8b61d32f2f23d3dad4804b8186e296c Mon Sep 17 00:00:00 2001 From: philipp Date: Fri, 5 May 2023 09:28:29 +0200 Subject: [PATCH] allow trip_type specification for creating a trip --- templates/forms/trip.html.tera | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/forms/trip.html.tera b/templates/forms/trip.html.tera index d669f23..742a792 100644 --- a/templates/forms/trip.html.tera +++ b/templates/forms/trip.html.tera @@ -7,6 +7,7 @@ {{ macros::input(label='Anzahl Ruderer (ohne Steuerperson)', name='max_people', type='number', required=true, min='0') }} {{ macros::checkbox(label='Gäste erlauben', name='allow_guests') }} {{ macros::input(label='Anmerkungen', name='notes', type='input') }} + {{ macros::select(select_name='trip_type', trip_types=trip_types, default='Reguläre Ausfahrt') }}