c31076ddb4
Note: This commit could break things, the userprofile model has been moved so the db layout must change (some alter table commands are needed to don't lose data) Signed-off-by: volpino <fox91@anche.no>
5 lines
114 B
Python
5 lines
114 B
Python
from django.contrib import admin
|
|
from euscan_accounts.models import UserProfile
|
|
|
|
admin.site.register(UserProfile)
|