From bda75b4fbd1be0721c7d13a382c773edd475023c Mon Sep 17 00:00:00 2001 From: ichuang Date: Tue, 26 Jun 2012 23:07:45 +0000 Subject: [PATCH] add admin model for student (need to be able to see activation keys in db) --- lms/djangoapps/student/admin.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lms/djangoapps/student/admin.py diff --git a/lms/djangoapps/student/admin.py b/lms/djangoapps/student/admin.py new file mode 100644 index 0000000000..4998f10f19 --- /dev/null +++ b/lms/djangoapps/student/admin.py @@ -0,0 +1,14 @@ +''' +django admin pages for courseware model +''' + +from student.models import * +from django.contrib import admin +from django.contrib.auth.models import User + +admin.site.register(UserProfile) + +admin.site.register(Registration) + +admin.site.register(PendingNameChange) +