django后台相关信息配置

参考链接:https://www.cnblogs.com/yoyoketang/p/10345623.html

django的admin首页默认显示的"Django 管理",title显示的是"Django 站点管理员",这里的文案内容可以修改成自己项目的后台页面内容

admin.py修改

sites.py源码里面AdminSite类下面有site_title、site_header、index_title这三个值

 

class AdminSite:
    """
    An AdminSite object encapsulates an instance of the Django admin application, ready
    to be hooked in to your URLconf. Models are registered with the AdminSite using the
    register() method, and the get_urls() method can then be used to access Django view
    functions that present a full admin interface for the collection of registered
    models.
    """

    # Text to put at the end of each page's <title>.
    site_title = gettext_lazy('Django site admin')

    # Text to put in each page's <h1>.
    site_header = gettext_lazy('Django administration')

    # Text to put at the top of the admin index page.
    index_title = gettext_lazy('Site administration')

在admin.py下重写admin.site里面的属性值

  • site_header 设置页面上的内容
  • site_title 页面左上角的title内容
  • index_title 后台管理
    # admin.py
    admin.site.site_header = 'xx 项目管理系统'
    admin.site.site_title = '登录系统后台'
    admin.site.index_title = '后台管理'

    刷新页面,即可看到修改后的内容index_title内容登录后即可看到已经修改成功了

修改app的名称

1、在app对应目录下的apps.py中新增verbose_name属性

2、在app对应目录下的init.py中添加设置default_app_config = 'courses.apps.***'

class ****(AppConfig):
    name = 'courses'
    verbose_name = '自定义APP名字'

apps.py

__init__.py

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值