添加视图到 Django 管理
有没有办法将自定义视图添加到 Django 管理应用程序?
具体来说,我希望能够将“内容”div 切换为自定义静态内容,同时保留“页眉”和“页脚”div。这与重定向到静态 HTML 页面不同,后者不会保留页眉和页脚。
Is there a way to add custom views to the Django admin app?
To be specific, I would like to be able to switch out the "content" div for custom static content, while preserving the "header" and "footer" divs. This is different than redirecting to a static HTML page, which would not preserve the header and footer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需照常配置视图(urls.py -> myapp.views),然后扩展管理基本模板:
You just configure your view as usual (urls.py -> myapp.views) and then extend the admin base template:
这是一个小介绍 http://www.djangobook.com/en/1.0/chapter17/< /a>,我认为新版本在哪里,但我认为扩展管理页面的概念没有任何改变。
Here is a small intro http://www.djangobook.com/en/1.0/chapter17/, I think where is new version, but I think where is nothing changed in concept of extending admin pages.