From e8133805f52ae03a6d7baaf1aa784fe82651b29f Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Sun, 5 Apr 2020 16:07:31 +0200 Subject: [PATCH] Users must be member of the BDE club --- apps/registration/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/registration/forms.py b/apps/registration/forms.py index 3bd1cbbf..3ca14ca1 100644 --- a/apps/registration/forms.py +++ b/apps/registration/forms.py @@ -62,7 +62,7 @@ class ValidationForm(forms.Form): join_BDE = forms.BooleanField( label=_("Join BDE Club"), - required=False, + required=True, initial=True, )