diff options
author | hardythe1 | 2015-01-14 13:43:41 +0530 |
---|---|---|
committer | hardythe1 | 2015-01-14 13:43:41 +0530 |
commit | 534cc561e22da308e31282ab9c598041558aa1b4 (patch) | |
tree | 806972214be0316cd43eb606059802c6b96be0aa /testapp/exam/models.py | |
parent | 69bd6d797129a5292b2752d334b3d4fc39744157 (diff) | |
download | online_test-534cc561e22da308e31282ab9c598041558aa1b4.tar.gz online_test-534cc561e22da308e31282ab9c598041558aa1b4.tar.bz2 online_test-534cc561e22da308e31282ab9c598041558aa1b4.zip |
Added model to store assignment files
Diffstat (limited to 'testapp/exam/models.py')
-rw-r--r-- | testapp/exam/models.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testapp/exam/models.py b/testapp/exam/models.py index 259f875..2386cd2 100644 --- a/testapp/exam/models.py +++ b/testapp/exam/models.py @@ -41,6 +41,9 @@ test_status = ( ('completed', 'Completed'), ) +def get_assignment_dir(instance, filename): + return '%s/%s/' % (instance.user.roll_number, instance.assignment.description) + ############################################################################### class Question(models.Model): """Question for a quiz.""" @@ -381,3 +384,11 @@ class AnswerPaper(models.Model): def __unicode__(self): u = self.user return u'Question paper for {0} {1}'.format(u.first_name, u.last_name) + + +################################################################################ +class AssignmentUpload(models.Model): + user = models.ForeignKey(Profile) + assignment = models.ForeignKey(Quiz) + assignmentQuestion = models.ForeignKey(Question) + assignmentFile = models.FileField(upload_to=get_assignment_dir) |