4

我在 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."

我需要的输出看起来像 请输入金额 __ 美元和 __ 美分以存入您的帐户。

我尝试了字符串插值,但失败了。有人能帮助我吗?

4

1 回答 1

3

我相信您可以使用 Arbre来布局表单。为了更好地控制,我使用 CSS 来覆盖单个输入的样式,例如:

form.subscription {
  #details {
    li:nth-child(n+2):nth-child(-n+5) {
      display: inline-block;
      width: 48%;
    }
  }
于 2017-03-03T21:24:23.493 回答