Django界面“Django Administrator”修改为自定义

1引用django框架的项目,当你需要修改Django administration这个标题的时候

admin.py项目修改,加一句话:

admin.site.site_header = "xxx平台"

其中site_header是django三方包里面定义的变量,在base_site.html这个里面能看到

定义的变量名,需要你在admin.py里面进行注册

 

2、本质:

/usr/local/lib/python3.7/site-packages/django/contrib/admin/templates/admin/sites.py

打开这个源代码

# -*- coding:utf-8 -*-  加上这个

修改这个类

class AdminSite(object):

    """

    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 = ugettext_lazy(u’xxx平台’)

    site_title = ugettext_lazy('Django site admin')

 

#    site_header = ugettext_lazy(u'xxx平台')

    site_header = ugettext_lazy('Django administration')

转载于:https://www.cnblogs.com/haoxinchen/p/9507055.html

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值