我在 Rails 4 ActiveAdmin 和 Money-Rails 上使用。有没有办法在一行文本中有两个或多个输入?
para "Please enter the amount"
f.input :amount_due_currency, :label => "Dollars ",:input_html => {:style => 'width:3%'}
para "and"
f.input :amount_due_cents, :label => "cents ", :input_html => {:style => 'width:10%'}
para "to deposit on your account."
我需要的输出看起来像 请输入金额 __ 美元和 __ 美分以存入您的帐户。
我尝试了字符串插值,但失败了。有人能帮助我吗?