Django Admin - change header #39;Django administration#39; text(Django Admin - 更改标题“Django 管理文本)
问题描述
如何更改 django 管理标头中的Django 管理"文本?
How does one change the 'Django administration' text in the django admin header?
自定义管理员"文档中似乎没有涵盖它.
It doesn't seem to be covered in the "Customizing the admin" documentation.
推荐答案
更新:如果您使用的是 Django 1.7+,请参阅 在下面回答.
Update: If you are using Django 1.7+, see the answer below.
2011 年的原始答案:您需要创建自己的管理 base_site.html
模板来执行此操作.最简单的方法是创建文件:
Original answer from 2011:
You need to create your own admin base_site.html
template to do this. The easiest way is to create the file:
/<projectdir>/templates/admin/base_site.html
这应该是 原始 base_site.html
,除了放入您的自定义标题:
This should be a copy of the original base_site.html
, except putting in your custom title:
{% block branding %}
<h1 id="site-name">{% trans 'my cool admin console' %}</h1>
{% endblock %}
为此,您需要为您的项目设置正确的设置,即在 settings.py
中:
For this to work, you need to have the correct settings for your project, namely in settings.py
:
- 确保将
/projectdir/templates/
添加到TEMPLATE_DIRS
. - 确保将
django.template.loaders.filesystem.Loader
添加到TEMPLATE_LOADERS
.
- Make sure
/projectdir/templates/
is added intoTEMPLATE_DIRS
. - Make sure
django.template.loaders.filesystem.Loader
is added intoTEMPLATE_LOADERS
.
有关 settings.py
的更多信息,请参阅文档.
See docs for more information on settings.py
.
这篇关于Django Admin - 更改标题“Django 管理"文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Django Admin - 更改标题“Django 管理"文本
基础教程推荐
- 筛选NumPy数组 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01