From 759ddb78dfecc19c56a91880c0134572b5dbccbe Mon Sep 17 00:00:00 2001 From: Ben Sturmfels <ben@sturm.com.au> Date: Fri, 21 Apr 2023 20:30:29 +1000 Subject: [PATCH] Add Health and Safety Guidelines to speaker form --- vendor/symposion/speakers/forms.py | 1 + 1 file changed, 1 insertion(+) 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 <a href="/attend/terms-and-conditions/">Terms and Conditions</a>, and I have read, understood, and agree to act according to the standards set forth in our <a href="/attend/code-of-conduct/">Code of Conduct</a>.<br>I agree to the <a href="/attend/health-and-safety/">Health and Safety Guidelines</a>, in particular the <strong>requirement to wear a mask</strong> at this event.' self.fields['biography'].required = True # self.fields['local_timezone'].required = True