diff --git a/vendor/symposion/speakers/forms.py b/vendor/symposion/speakers/forms.py index d3742da5..861aae07 100644 --- a/vendor/symposion/speakers/forms.py +++ b/vendor/symposion/speakers/forms.py @@ -30,6 +30,7 @@ class SpeakerForm(forms.ModelForm): def __init__(self, *a, **k): super(SpeakerForm, self).__init__(*a, **k) self.fields['agreement'].required = True + self.fields['agreement'].help_text = 'I agree to the Terms and Conditions, and I have read, understood, and agree to act according to the standards set forth in our Code of Conduct.
I agree to the Health and Safety Guidelines, in particular the requirement to wear a mask at this event.' self.fields['biography'].required = True # self.fields['local_timezone'].required = True