euscan-ng/euscanwww/euscan_accounts/admin.py
volpino c31076ddb4 euscanwww: Moving all account related stuff to a separate app
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>
2012-11-02 20:15:51 +01:00

5 lines
114 B
Python

from django.contrib import admin
from euscan_accounts.models import UserProfile
admin.site.register(UserProfile)