Added Send SMS function to traveller contacts. The send command is commented out.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
from django import forms
|
||||
|
||||
|
||||
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)
|
||||
message = forms.CharField(label="Message", max_length=320, widget=forms.Textarea)
|
||||
Reference in New Issue
Block a user