I need to add a few links to certain pages of the application in the ActiveAdmin pages. I can do this using sidebars, but I'll have to repeat the code for each of my resources. Is there anyway of adding custom links to the header ? Or define a sidebar that will appear for all resources ?
|
feedback
|
|
I also wouldn't want to overlook setting config.site_title_link in initializers/active_admin.rb. I'm pretty sure it takes a symbol representing the name of a route from your application, for example:
would link the site title to your application's root_path. | |||||||
feedback
|
|
Thanks @phoet ! Implemented it by overriding the HeaderRenderer instead:
| |||||||
feedback
|
|
i think there is no build-in way to do it, but you can override the render-logic in the TabsRenderer (2.2) / TabbedNavigation (3.0):
| |||
|
feedback
|