From d8f34c293a051c576df123b99e865c062319f107 Mon Sep 17 00:00:00 2001 From: Lars van Rhijn Date: Wed, 10 Apr 2024 13:18:48 +0200 Subject: [PATCH] Fix bug where music keys checkbox needs to be enabled --- website/borrel/forms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/borrel/forms.py b/website/borrel/forms.py index 35f45cc4..2b44f8ed 100644 --- a/website/borrel/forms.py +++ b/website/borrel/forms.py @@ -20,11 +20,12 @@ class BorrelReservationForm(forms.ModelForm): "It will have the same start and end time.", ) needs_music_keys = forms.BooleanField( + required=False, help_text=( "Whether you want to reserve the music keys for this borrel reservation as well (only applicable " "when reserving a canteen). Note that the music keys are NOT needed to control Thaliedje in the North " "canteen. You only need these if you want to connect your own device to the speakers." - ) + ), ) def __init__(self, *args, **kwargs):