diff options
author | Palaparthy Adityachandra | 2020-04-30 17:24:17 +0530 |
---|---|---|
committer | GitHub | 2020-04-30 17:24:17 +0530 |
commit | 2fd29bf1fff3d57a49b8a5cdffa9efc305946214 (patch) | |
tree | 16d974b5a5e1effaf15be2235813dca4108c4f29 /yaksh/admin.py | |
parent | 6fc01303dba0b821aa2344b761e98dc36b33807b (diff) | |
parent | 53a0c4ad3e733f3960000527f83565f2fd8fc412 (diff) | |
download | online_test-2fd29bf1fff3d57a49b8a5cdffa9efc305946214.tar.gz online_test-2fd29bf1fff3d57a49b8a5cdffa9efc305946214.tar.bz2 online_test-2fd29bf1fff3d57a49b8a5cdffa9efc305946214.zip |
Merge branch 'master' into API
Diffstat (limited to 'yaksh/admin.py')
-rw-r--r-- | yaksh/admin.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/yaksh/admin.py b/yaksh/admin.py index 9c36a98..3d3ba89 100644 --- a/yaksh/admin.py +++ b/yaksh/admin.py @@ -1,7 +1,7 @@ from yaksh.models import Question, Quiz, QuestionPaper, Profile from yaksh.models import (TestCase, StandardTestCase, StdIOBasedTestCase, Course, AnswerPaper, CourseStatus, LearningModule, - Lesson + Lesson, Post, Comment ) from django.contrib import admin @@ -48,6 +48,8 @@ class QuizAdmin(admin.ModelAdmin): admin.site.register(Profile, ProfileAdmin) admin.site.register(Question) admin.site.register(TestCase) +admin.site.register(Post) +admin.site.register(Comment) admin.site.register(StandardTestCase) admin.site.register(StdIOBasedTestCase) admin.site.register(Course, CourseAdmin) |