ruby-on-rails-4 – Active Admin Rails 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."

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

我尝试过字符串插值,但失败了.有谁可以帮助我吗?

最佳答案 我相信你可以使用Arbre
columns来布局表格.为了更好地控制,我使用CSS来覆盖单个输入的样式,例如:

form.subscription {
  #details {
    li:nth-child(n+2):nth-child(-n+5) {
      display: inline-block;
      width: 48%;
    }
  }
点赞