1. 程式人生 > >django-22.admin首頁和title修改

django-22.admin首頁和title修改

lec pan conf tex string title key interface fun

前言

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修改