summaryrefslogtreecommitdiff
path: root/website/models.py
diff options
context:
space:
mode:
authorSashi202019-09-03 11:05:29 +0530
committerSashi202019-09-03 11:05:29 +0530
commitba6097725b5154390e85a0f627b4014f95d6f3fa (patch)
treeae54d42aeba719e5c5f92eb0969b67b759c295da /website/models.py
parent0e1d7a701336e4c102934e9e46134a23d255e63c (diff)
downloadSciPy2019-ba6097725b5154390e85a0f627b4014f95d6f3fa.tar.gz
SciPy2019-ba6097725b5154390e85a0f627b4014f95d6f3fa.tar.bz2
SciPy2019-ba6097725b5154390e85a0f627b4014f95d6f3fa.zip
Modify cfp template and proposal submission interface
Diffstat (limited to 'website/models.py')
-rw-r--r--website/models.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/website/models.py b/website/models.py
index e714f7c..f6d2f24 100644
--- a/website/models.py
+++ b/website/models.py
@@ -147,3 +147,17 @@ class Profile(models.Model):
self.user.last_name,
self.user.email
)
+
+class CFP(models.Model):
+ start_date = models.DateTimeField(blank=True, null = True)
+ end_date = models.DateTimeField(blank=True, null=True)
+ date_of_announcement = models.DateTimeField(blank = True, null=True)
+ receive_proposals = models.BooleanField(default=True)
+
+
+class RegistrationDetail(models.Model):
+ registration_type = models.CharField(max_length=50, blank= True, null= True)
+ start_date = models.DateTimeField(blank=True, null = True)
+ end_date = models.DateTimeField(blank=True, null=True)
+ registration_ticket = models.CharField(max_length=100, blank=True, null=True)
+ registration_description = models.CharField(max_length=250, blank= True, null= True)