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