diff options
author | ankitjavalkar | 2015-02-05 14:28:48 +0530 |
---|---|---|
committer | ankitjavalkar | 2015-04-26 19:31:24 +0530 |
commit | ecb202633d3b90c55128030adb7817387bf28c95 (patch) | |
tree | bc90138ce3e57ce3c2d6db3c845673077145e4c0 /testapp/exam/admin.py | |
parent | 28e2d32f9839b0e3cb3e99ce0113832627610bd7 (diff) | |
download | online_test-ecb202633d3b90c55128030adb7817387bf28c95.tar.gz online_test-ecb202633d3b90c55128030adb7817387bf28c95.tar.bz2 online_test-ecb202633d3b90c55128030adb7817387bf28c95.zip |
Modify method of passing test case attributes to code server
Conflicts:
testapp/exam/admin.py
testapp/exam/models.py
testapp/exam/views.py
Diffstat (limited to 'testapp/exam/admin.py')
-rw-r--r-- | testapp/exam/admin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testapp/exam/admin.py b/testapp/exam/admin.py index 060859a..1bdf436 100644 --- a/testapp/exam/admin.py +++ b/testapp/exam/admin.py @@ -1,5 +1,6 @@ -from testapp.exam.models import Question, Quiz +from exam.models import Question, Quiz, TestCase from django.contrib import admin admin.site.register(Question) +admin.site.register(TestCase) admin.site.register(Quiz) |