前言
django的admin首頁默認顯示的"Django 管理",title顯示的是"Django 站點管理員",這里的文案內容可以修改成自己項目的后台頁面內容
首頁和title
django后台首頁點開,修改成項目對應的文案, 修改如下圖2個地方

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')
# 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內容登錄后即可看到已經修改成功了

