Only allow sending of SMS to active students by default

This commit is contained in:
John Mullins
2023-10-11 15:03:42 +11:00
parent 3cfc4b545f
commit d68dcfccc1
2 changed files with 13 additions and 1 deletions
+1
View File
@@ -5,4 +5,5 @@ class SMSForm(forms.Form):
_selected_action = forms.CharField(widget=forms.MultipleHiddenInput)
send_to_parents = forms.BooleanField(required=False)
send_to_emergency_contacts = forms.BooleanField(required=False)
only_include_active_travellers = forms.BooleanField(initial=True, required=False)
message = forms.CharField(label="Message", max_length=320, widget=forms.Textarea)