django实现多个app在后台自定义显示名称

django实现多个app在后台自定义显示名称

在apps中添加

# Interface_App下的apps.py
from django.apps import AppConfig

class InterfaceAppConfig(AppConfig):
	# app 名称
    name = 'Interface_App'
    # verbose_name 你想要显示的名称
    verbose_name = "接口管理"

# Interface_Manage下的apps.py
from django.apps import AppConfig

class InterfaceManageConfig(AppConfig):
    name = 'Interface_Manage'
    verbose_name = "权限管理"

在__init__.py中添加

# Interface_App下的__init__.py
default_app_config = 'Interface_App.apps.InterfaceAppConfig'

# Interface_Manage下的__init__.py
default_app_config = "Interface_Manage.apps.InterfaceManageConfig"

效果图

django实现多个app在后台自定义显示名称_第1张图片

你可能感兴趣的:(django,django,python)