From 2c38381937925703c6da219253819d66b59112d9 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Mon, 8 Oct 2018 12:27:43 +0530 Subject: Disabled submission interface --- website/models.py | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'website/models.py') 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 -- cgit