6 lines
159 B
Python
6 lines
159 B
Python
from django.contrib import admin
|
|
from .user.models.user_information import UserInformation
|
|
|
|
# Register your models here.
|
|
admin.site.register(UserInformation)
|
|
|