This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
from os import path
from django.apps import AppConfig
VERBOSE_APP_NAME = '公司简介' #别的app也是这样,全部复制,把这里改为对面的app别名即可。
def get_current_app_name(file):
return path.dirname(file).replace('\\','/').split('/')[-1]
class AppVerboseNameConfig(AppConfig):
name = get_current_app_name(__file__)
verbose_name = VERBOSE_APP_NAME
default_app_config = get_current_app_name(
__file__) + '.__init__.AppVerboseNameConfig'