HimoolERP/apps/system/admin.py

6 lines
131 B
Python
Raw Normal View History

2021-11-04 17:35:34 +08:00
from django.contrib import admin
2021-11-08 17:27:57 +08:00
from apps.system.models import *
2021-11-04 17:35:34 +08:00
2021-11-08 17:27:57 +08:00
admin.register([Team, PermissionType, Permission, Role, User])