summaryrefslogtreecommitdiff
path: root/website/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'website/forms.py')
-rwxr-xr-xwebsite/forms.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/website/forms.py b/website/forms.py
index 67bfc9f..a08c9ee 100755
--- a/website/forms.py
+++ b/website/forms.py
@@ -155,6 +155,7 @@ class ProposalForm(forms.ModelForm):
)
open_to_share = forms.ChoiceField(choices=CHOICES, widget=forms.RadioSelect(), required=True,
label='I agree to publish my content',)
+ terms_and_conditions = forms.BooleanField(widget=forms.CheckboxInput(), required=True, label='I agree to the terms and conditions')
class Meta:
model = Proposal