forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 4
Set page title
Daxter edited this page May 18, 2012
·
6 revisions
If you'd like to override the page titles, follow this pattern (from #184)
ActiveAdmin.register Post do
# Custom string
index :title => 'Awesome Title' do
# ...
end
# Call a method
show :title => :my_title_method do
# ...
end
# execute some code
show :title => proc{ post.title } do
# ...
end
# Custom actions
collection_action :comments, :title => "My Awesome Comments" do
# do stuff
end
end