自定义 django 管理面板?
我想更改 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了解决方案:
在notpad中创建该文件
,然后将上述文件以“base_site.html”名称保存在项目目录的“admin”文件夹中。
还要在 TEMPLATE_DIRS 下的 settings.py 文件中以引号给出 admin 父目录的路径。
I found out the solution:
Make the file in notpad
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.
看看 django-grappelli : http://code.google.com/p/django -grappelli/
或者
自己动手:http://docs.djangoproject.com/en/dev/ref/contrib/admin/#overriding-admin-templates
Have a look a django-grappelli : http://code.google.com/p/django-grappelli/
Or
Do it yourself : http://docs.djangoproject.com/en/dev/ref/contrib/admin/#overriding-admin-templates