7 lines
128 B
Python
7 lines
128 B
Python
|
from django.contrib import admin
|
||
|
from .user.models import *
|
||
|
|
||
|
admin.site.register(UserInformation)
|
||
|
|
||
|
# Register your models here.
|