I understand that ActiveAdmin supports multiple index pages if the index pages are of different types (table, grid, block, blog), but I need to have two index table pages. I tried
index :as => :table do
...
end
index :as => :table do
...
end
but the index page only displays the first table. Is there a way to display both tables and rename the tabs?
Thanks