diff options
Diffstat (limited to 'testapp/exam/models.py')
-rw-r--r-- | testapp/exam/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testapp/exam/models.py b/testapp/exam/models.py index 00d32e4..da9bc0a 100644 --- a/testapp/exam/models.py +++ b/testapp/exam/models.py @@ -113,6 +113,7 @@ class Quiz(models.Model): class QuestionPaper(models.Model): quiz = models.ForeignKey(Quiz) questions = models.ManyToManyField(Question) + total_marks = models.FloatField() ################################################################################ class AnswerPaper(models.Model): |