我为ActiveAdmin rescource创建了一个集合操作,并希望从资源索引页面链接到它。
但是如何自定义资源索引页面?
手册提供了一些选项,但没有在页面上添加html /按钮(或者我看不到哪里)。
答案 0 :(得分:25)
您可以使用action_item
块在索引页面上创建按钮:
action_item only: :index do
link_to 'Button text', post_path(post)
end
https://github.com/activeadmin/activeadmin/blob/master/docs/8-custom-actions.md#action-items