显示面板自定义标签activeadmin

时间:2017-03-04 12:11:43

标签: ruby-on-rails ruby activeadmin

我在Active Admin中的帖子资源中有show代码:

show do |post|
  attributes_table do
    rows :name, :author, :category
  end
end

我只想要自定义标签,但面板始终提供Post Details作为面板的标签。我希望它像Your Blog Details

1 个答案:

答案 0 :(得分:2)

show title: 'Your Blog Details' do |post|
  attributes_table do
    rows :name, :author, :category
  end
end

Reference