博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
怎么把顶部的Django administration去掉!!
阅读量:6909 次
发布时间:2019-06-27

本文共 2093 字,大约阅读时间需要 6 分钟。

/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 %}

{
{ site_header|default:_('Django Administration') }}

{% 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 %}

广州XX贸易有限公司

{% 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 .    site_title = ugettext_lazy('Django site admin')    # Text to put in each page's 

. 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的界面内容

 

 

 

 

转载于:https://www.cnblogs.com/alan-babyblog/p/5665353.html

你可能感兴趣的文章
用开源项目CropImage实现图片的裁剪(不推荐)
查看>>
Objective-C中的委托(代理)模式
查看>>
git branch 命令
查看>>
Android 自定义组合控件
查看>>
SQL Server 中 RAISERROR 的用法
查看>>
C++Vector使用方法
查看>>
MySQL 通配符学习小结
查看>>
CSS之清除浮动
查看>>
window server 2012 r2服务器配置资料参考
查看>>
java中String的常用方法
查看>>
Bootstrap3实现的响应式幻灯滑动效果个人作品集/博客网站模板
查看>>
C#放缩、截取、合并图片并生成高质量新图的类
查看>>
让所有的浏览器都支持html5
查看>>
朴素贝叶斯分类器的应用
查看>>
openstack笔记
查看>>
How to Kill All Processes That Have Open Connection in a SQL Server Database[关闭数据库链接 最佳方法] -摘自网络...
查看>>
HDU1003 Max Sum(求最大字段和)
查看>>
cocos2dx A*算法
查看>>
Trapping Messages Sent to an Application
查看>>
【JQuery插件】元素根据滚动条位置自定义吸顶效果
查看>>