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_at.

Is is possible to do that in a way similar to the index page, i.e. by explicitly listing the desired attributes, while letting AtiveAdmin handle the layout?

The only example shown in the docs suggests that to customize the show page you have to completely take over and write a partial or an arbre construct.

Thanks!

link|improve this question

67% accept rate
feedback

1 Answer

up vote 9 down vote accepted

I think you're looking for attributes_table:

show do
  attributes_table :name, :content
end

See https://github.com/gregbell/active_admin/blob/master/lib/active_admin/views/pages/show.rb if you're curious.

(I completely removed my prior answer because it was basically useless!)

link|improve this answer
1  
Turns out this is actually in the newest (as yet unpublished) docs: github.com/gregbell/active_admin/blob/master/docs/… – Michael Hellein Sep 23 '11 at 15:36
That is exactly what I needed. Thanks! – Giuseppe Sep 25 '11 at 20:41
Glad to hear it! Strangely, the ActiveAdmin docs still aren't up to date: activeadmin.info/docs/6-show-screens.html – Michael Hellein Oct 5 '11 at 13:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.