From 46704dc10a1b007c23bb40f8de66b92c89dbdfaa Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 1 Jul 2022 09:48:54 +0200 Subject: [PATCH] streaming field not required --- teleforma/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teleforma/forms.py b/teleforma/forms.py index 187d04c3..7adbc933 100644 --- a/teleforma/forms.py +++ b/teleforma/forms.py @@ -4,7 +4,7 @@ from teleforma.models import Conference class ConferenceForm(forms.ModelForm): - streaming = forms.BooleanField(initial=False) + streaming = forms.BooleanField(initial=False, required=False) class Meta: model = Conference -- 2.39.5