From 9815e1131dee959c3782e5a32eff85f94ac8b69c Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Fri, 17 May 2024 12:19:42 +1000 Subject: [PATCH] Remove mention of mask requirement --- vendor/symposion/symposion/speakers/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/symposion/symposion/speakers/forms.py b/vendor/symposion/symposion/speakers/forms.py index 8887a69c..c74d6e3d 100644 --- a/vendor/symposion/symposion/speakers/forms.py +++ b/vendor/symposion/symposion/speakers/forms.py @@ -30,7 +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['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.' self.fields['biography'].required = True # self.fields['local_timezone'].required = True