我的管理员中有一个使用活动管理员构建的自定义页面:
在app/admin/stats.rb 中:
ActiveAdmin.register_page 'Stats' do
controller do
def index
@foo = 'bar'
end
end
end
在app/views/admin/stats/index.html.erb:
<h1> Admin stats</h1>
<p><%= @foo %></p>
当我转到 /admin/stats 时,我看到了我的页面,但没有正常的管理布局(如仪表板页面上)
如何使用默认布局装饰我的页面?
我试过了:
ActiveAdmin.register_page 'Stats' do
content do
'foobar'
end
controller do
def index
@foo = 'bar'
end
end
end
但这并没有改变任何东西。仍然是我的统计页面,没有布局。有任何想法吗 ?