姜戈。管理站点中表单的取消按钮
管理站点中是否有任何功能允许实现每个添加/更改表单取消按钮,将我重定向到该表单对象的列表。我的意思是任何形式的通用解决方案。
Is there any functionality in admin site that allow to implement for every add/change form cancel button, that redirects me to list of that form objects. I mean some general solution for any form.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在项目的
templates
目录中添加admin/submit_line.html
。使用默认的submit_line.html中的代码,并添加取消按钮。您可以将其链接到“../”,使其始终只上升一级。然后进行任何必要的 CSS 样式设置,使其看起来正确。Add
admin/submit_line.html
in your project'stemplates
directory. Use the code from the default submit_line.html, and add your cancel button. You can link it to just "../" to make it always just go up one level. Then do any necessary CSS styling to make it look right.创建一个文件:
yourapp/templates/admin/submit_line.html
我使用 Bootstrap,但您可以轻松更改它
确保您的应用程序位于 INSTALLED_APPS 中的“admin”之上。
在德语语言环境中看起来像这样:
Create a file:
yourapp/templates/admin/submit_line.html
I use Bootstrap, but you can change this easily
Be sure that your application is above "admin" in INSTALLED_APPS.
Looks like this in German locale:
您可以在 admin/submit_line.html 内的任何位置添加此行
You can this line anywhere inside admin/submit_line.html