summaryrefslogtreecommitdiff
path: root/website/models.py
diff options
context:
space:
mode:
authorSashi202018-10-08 12:27:43 +0530
committerSashi202018-10-08 12:27:43 +0530
commit2c38381937925703c6da219253819d66b59112d9 (patch)
tree20e6ef72f393d99dbe4685ffda74d3b2a0cddc16 /website/models.py
parent4b069e08b7a56d2b57c128a326caf9eb97e47f7c (diff)
downloadnccps-2018-2c38381937925703c6da219253819d66b59112d9.tar.gz
nccps-2018-2c38381937925703c6da219253819d66b59112d9.tar.bz2
nccps-2018-2c38381937925703c6da219253819d66b59112d9.zip
Disabled submission interface
Diffstat (limited to 'website/models.py')
-rw-r--r--website/models.py15
1 files changed, 4 insertions, 11 deletions
diff --git a/website/models.py b/website/models.py
index 0a6e690..7906960 100644
--- a/website/models.py
+++ b/website/models.py
@@ -1,6 +1,5 @@
from django.db import models
from django.contrib.auth.models import User
-
from social.apps.django_app.default.models import UserSocialAuth
from nccps2018 import settings
from django.core.validators import RegexValidator
@@ -99,13 +98,7 @@ class Profile(models.Model):
self.user.last_name,
self.user.email
)
-
-"""class Question(models.Model):
- Question for a quiz.
-
- question = models.CharField(max_length=100)
- option_1 = models.CharField(max_length=100)
- option_2 = models.CharField(max_length=100)
- option_3 = models.CharField(max_length=100)
- option_4 = models.CharField(max_length=100)
- correct_answer = models.CharField(max_length=100) """ \ No newline at end of file
+
+
+
+ \ No newline at end of file