自定义 django 管理面板?

发布于 2024-08-22 17:37:51 字数 116 浏览 7 评论 0原文

我想更改 django 默认管理面板标题栏,其中包含django 管理。 实际上我想用我的网站名称替换 django Administration

I want to change the django bydefault admin panel title bar where wirte the django administration.
Actually I want to replace the django administration with the my site name.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

扎心 2024-08-29 17:37:51

我找到了解决方案:
在notpad中创建该文件

{% extends "admin/base.html" %}
{% load i18n %}

{% block title %}{{ title }} | {% trans 'Your Customize name' %}{% endblock %}

{% block branding %}
<h1 id="site-name">{% trans 'Your Customize name administration' %}</h1>
{% endblock %}

{% block nav-global %}{% endblock %}

,然后将上述文件以“base_site.html”名称保存在项目目录的“admin”文件夹中。
还要在 TEMPLATE_DIRS 下的 settings.py 文件中以引号给出 admin 父目录的路径。

I found out the solution:
Make the file in notpad

{% extends "admin/base.html" %}
{% load i18n %}

{% block title %}{{ title }} | {% trans 'Your Customize name' %}{% endblock %}

{% block branding %}
<h1 id="site-name">{% trans 'Your Customize name administration' %}</h1>
{% endblock %}

{% block nav-global %}{% endblock %}

and then save the above file with the name "base_site.html" in the folder name "admin" of your project directory.
Also give the path of admin parent directory in the settings.py file under TEMPLATE_DIRS in inverted commas.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文