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)
|