如何在edit
页面上显示 form do |f|
f.semantic_errors(*f.object.errors.keys)
f.inputs 'Edit SSR' do
f.input :scope
f.input :code
f.input :name
end
f.actions
and here my view data goes
.....
end
页面的显示部分
我想在我的编辑表单下显示一些数据。
public partial class MasterLogin : UserControl
我试图覆盖表格但没有运气
我怎么做?
答案 0 :(得分:0)
如果要在表单下方显示数据,则可以在active_admin资源文件中将其写入div中,如下所示:
form do |f|
f.semantic_errors(*f.object.errors.keys)
f.inputs 'Edit SSR' do
f.input :scope
f.input :code
f.input :name
end
f.actions
div id: "div_id", class: "div_class" do
#put your data here
end
end
或者您可以创建一个部分并将其命名为:
form partial: "partial_name"