zoukankan      html  css  js  c++  java
  • 怎么把顶部的Django administration去掉!!

    /Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/django/contrib/admin/templates/admin

    目录下,有个叫

    base_site.html的文件,打开并把Django administration去掉即可

    {% extends "admin/base.html" %}
    
    {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
    
    {% block branding %}
    <h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Django Administration') }}</a></h1>
    {% endblock %}
    
    {% block nav-global %}{% endblock %}
    

    把{{ site_header|default:_('Django Administration') }} 替换掉

    {% extends "admin/base.html" %}
    
    {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
    
    {% block branding %}
    <h1 id="site-name"><a href="{% url 'admin:index' %}">广州XX贸易有限公司</a></h1>
    {% endblock %}
    
    {% block nav-global %}{% endblock %}
    

     

    其中sites.py,是django的源码文件之一,

    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('Django site admin')
    
        # Text to put in each page's <h1>.
        site_header = ugettext_lazy('Django administration')
    
        # Text to put at the top of the admin index page.
        index_title = ugettext_lazy('Site administration')
    
        # URL for the "View site" link at the top of each admin page.
        site_url = '/'
    
        _empty_value_display = '-'
    
        login_form = None
        index_template = None
        app_index_template = None
        login_template = None
        logout_template = None
        password_change_template = None
        password_change_done_template = None
    

     

    # Text to put at the end of each page's <title>.

    site_title = ugettext_lazy('Django site admin')

    # Text to put in each page's <h1>.

    site_header = ugettext_lazy('Django administration')

    # Text to put at the top of the admin index page.

    index_title = ugettext_lazy('Site administration')

    即可修改admin的界面内容

     

     

     

  • 相关阅读:
    帆软报表(finereport)图表——扇形图/等弧度的玫瑰图
    帆软报表(finereport)单元格中各颜色标识的含义
    帆软报表(finereport) 动态报表
    帆软报表(finereport)常用函数
    帆软报表(finereport)安装/配置
    SQL Server 2017 安装详解
    T-SQL删除存储过程
    【STM32H7的DSP教程】第20章 DSP复数运算-模平方,乘法和复数乘实数
    【STM32F429的DSP教程】第20章 DSP复数运算-模平方,乘法和复数乘实数
    【STM32F407的DSP教程】第20章 DSP复数运算-模平方,乘法和复数乘实数
  • 原文地址:https://www.cnblogs.com/alan-babyblog/p/5665353.html
Copyright © 2011-2022 走看看