HimoolERP/apps/system/admin.py

6 lines
137 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
2021-12-13 02:14:00 +08:00
admin.site.register([Team, PermissionGroup, Permission, Role, User])