Django:将我自己的表单添加到管理后端?
我正在使用 Django 管理模块。它显示要由应用程序编辑的模型列表。我想在此列表中添加另一种形式。它不会编辑特定模型,但会编辑存储在数据库中的设置。这可能吗?
I'm using the Django Admin module. It displays a list of models to edit by app. I would like to add another form to this list. It won't edit a specific model, but it will edit settings that are stored in the database. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看 Django Live 设置。它是从 Satchmo 项目中分离出来的,看起来可以满足您的需求。
否则,您可以查看覆盖 Django 管理模板< /a>.您可以覆盖 index 模板并将链接添加到底部。
You may check out Django Live Settings. It was split out of the Satchmo project and looks to do what you're looking for.
Otherwise, you may look into Overriding the Django Admin Templates. You could just override the index template and add your links to the bottom.