我正在尝试生成一个常规的简单形式
= simple_form_for [:hq, @team, @order] do |f|
.tickets
= f.select :tickets, :aaa => "aaa"
= render "ticket"
.details
.left
= f.input :address1
= f.input :address2
= f.input :state
= f.input :country
= f.input :email
.right
= f.input :comments
但我希望输入不使用标签呈现,只是占位符中的标题“地址行 1”。
我知道我可以这样做,f.input :address1, :placeholder => "whatever", :label => ""
但我希望它可以使用包装器进行配置,并采用 i18n 值形式标签,而不是占位符。