How to add button to ActiveAdmin's index page

后端 未结 1 1742
被撕碎了的回忆
被撕碎了的回忆 2021-01-17 16:26

I created a collection action for ActiveAdmin rescource and want to link to it from the resource index page.

But how do I customize the resource index page?

相关标签:
1条回答
  • 2021-01-17 17:14

    You can create buttons on index page with action_item block:

    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

    0 讨论(0)
提交回复
热议问题