The default show page in ActiveAdmin is a table with one attribute per row. For my backend, this would be fine, except that I want to hide fields such as id, created_at, updated
This will show an example of an object Package with a has_many relationship (FAQS)
show do |package|
attributes_table do
row :slug
...
row :hotel
panel "FAQS" do
table_for package.faqs do
column :question
column :answer
end
end
end
end