Django 使用自定义模板运行管理界面

发布于 2024-12-05 11:29:39 字数 236 浏览 1 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(1

再浓的妆也掩不了殇 2024-12-12 11:29:39

不要管 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

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