I am trying to create a simple dashboard on active admin.
The idea here is to have multiple panels that serve as a quick view of different models. The problem is that when I move between pages it affects all paginators.
I am doing this
paginated_collection(my_collection.page(params[:page_2]).per(5)) do
table_for collection do |t|
...
end
end
Is it possible to have multiple paginators on active admin for the same page?