summaryrefslogtreecommitdiff
path: root/website/models.py
diff options
context:
space:
mode:
authorSashi202018-09-19 12:39:53 +0530
committerGitHub2018-09-19 12:39:53 +0530
commitc907f4978c420c357e23c0f9098ca3d69a135bba (patch)
tree469d96d5e2729cfb7d78f696d9114a3a4b9dfd82 /website/models.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/models.py')
-rw-r--r--website/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/website/models.py b/website/models.py
index f5b004a..d550548 100644
--- a/website/models.py
+++ b/website/models.py
@@ -51,6 +51,7 @@ class Proposal(models.Model):
proposal_type = models.CharField(max_length=100)
tags = models.CharField(max_length=250)
open_to_share = models.CharField(max_length=2, default=1)
+ terms_and_conditions = models.BooleanField(default= 'True')
class Ratings(models.Model):