diff options
author | maheshgudi | 2016-09-15 17:32:34 +0530 |
---|---|---|
committer | maheshgudi | 2016-09-15 17:32:34 +0530 |
commit | 4797964bed5bf18944b6445000b7b4f1bf6d80e3 (patch) | |
tree | 8ad7200b9f81745b4318c4b58b3de0b211ed9ffa /yaksh/admin.py | |
parent | bcf46d1462c35e9c8df2509a31ac3200383976fc (diff) | |
download | online_test-4797964bed5bf18944b6445000b7b4f1bf6d80e3.tar.gz online_test-4797964bed5bf18944b6445000b7b4f1bf6d80e3.tar.bz2 online_test-4797964bed5bf18944b6445000b7b4f1bf6d80e3.zip |
admin can delete answerpaper
Diffstat (limited to 'yaksh/admin.py')
-rw-r--r-- | yaksh/admin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yaksh/admin.py b/yaksh/admin.py index b5c8933..58af7b2 100644 --- a/yaksh/admin.py +++ b/yaksh/admin.py @@ -1,5 +1,5 @@ from yaksh.models import Question, Quiz, QuestionPaper -from yaksh.models import TestCase, StandardTestCase, StdioBasedTestCase, Course +from yaksh.models import TestCase, StandardTestCase, StdioBasedTestCase, Course, AnswerPaper from django.contrib import admin admin.site.register(Question) @@ -9,3 +9,4 @@ admin.site.register(StdioBasedTestCase) admin.site.register(Course) admin.site.register(Quiz) admin.site.register(QuestionPaper) +admin.site.register(AnswerPaper)
\ No newline at end of file |