码迷,mamicode.com
首页 > 其他好文 > 详细

django-22.admin首页和title修改

时间:2019-02-10 17:37:01      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:interface   ttext   comm   obj   class   top   cat   block   view   

前言

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

首页和title

django后台首页点开,修改成项目对应的文案, 修改如下图2个地方

技术图片

amdin.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‘)

    # URL for the "View site" link at the top of each admin page.
    site_url = ‘/‘

在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内容登录后即可看到已经修改成功了

技术图片

 
 

django-22.admin首页和title修改

标签:interface   ttext   comm   obj   class   top   cat   block   view   

原文地址:https://www.cnblogs.com/jason89/p/10359456.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!