Is it possible to display nested resource in the show page? I am looking for examples nut there is nothing, how can it be done?
My previous comment made no sense at all, sorry for that. Does this answer your question:
@sylario, here's an example. I prefer to use a sidebar to hold the main record's details, while using the main part of the page for associated records.
ActiveAdmin.register User do
show do
panel "Owned Books" do
table_for user.books do
column :title
# ...
end
end
end
sidebar "User Information", only: [:show, :edit] do
attributes_table_for user do
row :full_name
row :role
end
end
end
@jasperkennis, your link was for forms, but OP is talking about the show page
Most helpful comment
@sylario, here's an example. I prefer to use a sidebar to hold the main record's details, while using the main part of the page for associated records.
@jasperkennis, your link was for forms, but OP is talking about the show page