我在Active Admin中有一个编辑表单.我需要一些字段作为只读.
我当前的编辑页面就像
我需要这样的页面
form :html => { :enctype => "multipart/form-data" } do |f| f.inputs "Users" do f.input :device,:label => 'Device',:as => :select,:collection => DEVICE,:include_blank => false f.input :current_address,:label => 'Current Address',:as => :string end end
请帮忙.