如何将自定义按钮添加到管理列表?
我想要的是在管理列表页面的每一行中放置一个自定义按钮。
这些按钮将具有与其关联的功能,该功能通过该行起作用。
我已经知道“管理操作”,但这不是我想要的,好吗?
谢谢你!
What I want is to put a custom button in each row of a page of the admin listing.
These buttons will have a function associate to it acting over that line.
I've already knew the "admin actions", but it's not what I want, ok?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 ModelAdmin 中声明一个函数来为您的按钮生成 html,例如
,然后将其放入您的
list_display
元组中。http://docs.djangoproject.com/en/dev/参考/contrib/admin/#modeladmin-options
You can declare in your ModelAdmin a function to generate the html for your button, e.g.
And then put it in your in your
list_display
-tuple.http://docs.djangoproject.com/en/dev/ref/contrib/admin/#modeladmin-options