We are wanting to add a help page to our admin and we are using the active admin gem. This page is not associated to any model so I am struggling trying to figure out how to get the link to show up in the menu bar on every page.
|
feedback
|
|
Make a file /app/models/help.rb with this contents, for more advanced tableless models you might want to check out http://keithmcdonnell.net/activerecord_tableless_model_gem.html or google your own insight together.
add an entry to /config/initializers/inflections.rb
set up a route for your viewlogger, in config/routes.rb:
now you can formulate the activeadmin register block as follows (make you sure you create a view partial in the right place)
end | |||
|
feedback
|
|
I know I'm a little late, but I usually am :D.
Here's the corresponding code block in active_admin
| ||||
feedback
|
sidehar :help do render "help" end– StephaneP Oct 20 '11 at 17:30