我在 Rails 3.2(带有 Active Admin)中使用 Formtastic 2.1.1,我想在我的表单中插入一行,但没有输入字段。这可能吗?实现这一点的 Formtastic DSL 中的语法是什么?
这是一个例子:
form do |f|
f.inputs "Model Info" do
f.input :title
f.input :published
f.input :path
end
end
我想做这样的事情:
form do |f|
f.inputs "Model Info" do
f.input :title
f.input :published
f.input :path
f.div "This is some important text that people using this form need to know"
end
end
以前有人用Formtastic做过这个吗?