好吧,我有一个账单资源,我希望账单资源的形式显示在活动的管理仪表板中.我的代码看起来像 – >
应用程序/视图/管理/仪表板/ _form.html.arb
active_admin_form_for bill do |f|
f.semantic_errors *f.object.errors.keys
inputs 'Enter the bill details' do
input :amount
input :is_paid
actions
end
end
dashboard.rb
ActiveAdmin.register_page "Dashboard" do
menu priority: 1, label: proc{ I18n.t("active_admin.dashboard") }
content title: proc{ I18n.t("active_admin.dashboard") } do
form render 'form'
end
end
但是我在仪表板上只获得了这个表单的黑色空间!
请帮帮我!
最佳答案 尝试使用render partial替换渲染线:’form’