summaryrefslogtreecommitdiff
path: root/website/models.py
diff options
context:
space:
mode:
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)