1) Use accept nested attributes in your Page model to have the comments in the page edit forms
For the show view, just do smtg like:
config.model Page do
show do
configure :comments do
pretty_print do
bindings[:object].comments.join
end
end
end
end
2) See the translation section in the wiki. This is the :dashboard action's title. Find the i18n key and change it in your locale/rails_admin.LOCALE.yml
3) History audit changes. I'm not sure what you want, but it doesn't sound standard.
You can hack your way around, I guess.