summaryrefslogtreecommitdiff
path: root/website/models.py
diff options
context:
space:
mode:
authorSashi202019-09-03 15:38:47 +0530
committerGitHub2019-09-03 15:38:47 +0530
commit463e9487c6ee11146a6a8fb3689650af663dfe51 (patch)
treeae54d42aeba719e5c5f92eb0969b67b759c295da /website/models.py
parentd0ff5d11f935ba5217c1be6357d44891b6e22b3c (diff)
parentba6097725b5154390e85a0f627b4014f95d6f3fa (diff)
downloadSciPy2019-463e9487c6ee11146a6a8fb3689650af663dfe51.tar.gz
SciPy2019-463e9487c6ee11146a6a8fb3689650af663dfe51.tar.bz2
SciPy2019-463e9487c6ee11146a6a8fb3689650af663dfe51.zip
Merge pull request #3 from Sashi20/development
Add images and modify cfp templates
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)