据我所知,如果索引页面的类型不同(表格,网格,块,博客),ActiveAdmin支持多个索引页面,但我需要有两个索引表页面。我试过了
index :as => :table do
...
end
index :as => :table do
...
end
但索引页面只显示第一个表格。有没有办法显示两个表并重命名选项卡?
由于
答案 0 :(得分:3)
你试过这个吗?
Two pages for the same resource - ActiveAdmin
例如:
ActiveAdmin.register User, :as => 'Waitlist User' do
end
这样您就不需要创建自定义索引页面了。
答案 1 :(得分:1)
拥有two index table
个网页将无法正常工作,因为Active_admin将始终选择index :as => :table
的第一个匹配项。
为了达到所需的结果,即两个索引表页面,你可以做的是,
将一个保留为索引表页面,另一个保存为custom index
。
请参阅 Multiple Index Pages 部分和 Create your own index page 。
希望这有帮助。