diff options
Diffstat (limited to 'choice_seeker/allotter/admin.py')
-rw-r--r-- | choice_seeker/allotter/admin.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/choice_seeker/allotter/admin.py b/choice_seeker/allotter/admin.py new file mode 100644 index 0000000..0c14e78 --- /dev/null +++ b/choice_seeker/allotter/admin.py @@ -0,0 +1,7 @@ +from allotter.models import Exam, Option, Application, Profile +from django.contrib import admin + +admin.site.register(Exam) +admin.site.register(Option) +admin.site.register(Application) +admin.site.register(Profile) |