Skip to content
houen edited this page Jan 26, 2012 · 3 revisions

If you'd like to override the page titles, follow this pattern (from #184)


ActiveAdmin.register Post do
    # DO THIS
  show :title => :my_title_method do
    # ...
  end
  # OR THIS
  show :title => proc{ post.title } do
     # ...
  end
end