From 3f4050d96f9ab85887c4e762938d63aaa59c6479 Mon Sep 17 00:00:00 2001 From: James Polley Date: Sun, 1 Oct 2017 14:48:59 +1100 Subject: [PATCH] Use a YesNo field for T&C/CoC agreement Using a checkbox doesn't make it obvious that this is required. --- pinaxcon/registrasion/forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pinaxcon/registrasion/forms.py b/pinaxcon/registrasion/forms.py index 7bb21f1e..17ef9ef2 100644 --- a/pinaxcon/registrasion/forms.py +++ b/pinaxcon/registrasion/forms.py @@ -28,4 +28,5 @@ class ProfileForm(forms.ModelForm): } field_classes = { "of_legal_age": YesNoField, + "agreement": YesNoField, }