Django 使用自定义模板运行管理界面
在 django 中如何运行 /admin 界面以及自定义管理索引页面。我的模板目录如下。
模板目录 = ( PROJECT_PATH + '/模板/', )
并且...
ADMIN_MEDIA_PREFIX = '//admin/'
如果我注释此行,我的其他功能将无法工作,如果我将其取消注释,那么管理界面将显示我指定的文件。
我应该怎么做才能同时运行两者。提前致谢
In django how to run /admin interface as well as customized admin index page. My template dirs is followed below.
TEMPLATE_DIRS = (
PROJECT_PATH + '/templates/',
)
And...
ADMIN_MEDIA_PREFIX = '//admin/'
If i will comment this line my other functions would not work, if i put it uncommented then ma admin interface shows my specified file.
What should i do to run both simultaneously. Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要管
TEMPLATE_DIRS
,这影响的不仅仅是管理员,而且这也不是您的问题。覆盖任何管理页面的方法是将默认 Django 管理模板中的关联模板包含在您自己的“yourproject/templates/admin”目录中,并进行必要的修改。
请参阅文档:https://docs.djangoproject。 com/en/1.3/ref/contrib/admin/#overriding-admin-templates
Leave
TEMPLATE_DIRS
alone, that affects more than just the admin, and that's not your problem anyways.The way to override any admin page is to include the associated template from the default Django admin templates in your own 'yourproject/templates/admin' directory, and make the necessary modifications.
See the documentation: https://docs.djangoproject.com/en/1.3/ref/contrib/admin/#overriding-admin-templates