summaryrefslogtreecommitdiff
path: root/website/forms.py
diff options
context:
space:
mode:
authorSashi202018-09-19 12:39:53 +0530
committerGitHub2018-09-19 12:39:53 +0530
commitc907f4978c420c357e23c0f9098ca3d69a135bba (patch)
tree469d96d5e2729cfb7d78f696d9114a3a4b9dfd82 /website/forms.py
parent3ff95c180e304f889ddc0113603ac98bce63f42f (diff)
parent0f977c31a390436cf19eb5a78c4ebbb1de845d79 (diff)
downloadnccps-2018-c907f4978c420c357e23c0f9098ca3d69a135bba.tar.gz
nccps-2018-c907f4978c420c357e23c0f9098ca3d69a135bba.tar.bz2
nccps-2018-c907f4978c420c357e23c0f9098ca3d69a135bba.zip
Merge pull request #9 from Sashi20/master
Added checkbox for terms and conditions in paper submission and modified email template for submission acknowledgement
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