add admin model for student (need to be able to see activation keys in db)
This commit is contained in:
14
lms/djangoapps/student/admin.py
Normal file
14
lms/djangoapps/student/admin.py
Normal file
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user