1

所以我正在使用设计。这一切都很有趣,但我需要将所有视图包装在一个不错的 span3.well 中并将它们居中。我认为代码很简单。所以这就是我想要做的:

<div class="row-fluid">
  <div class="span4 offset4 well">
    <h2>Sign up</h2>

    <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :class=>"form-horizontal") do |f| %>
      <%= devise_error_messages! %>

      <div><%= f.label :name %><br />
      <%= f.text_field :name, :autofocus => true %></div>

      <div><%= f.label :email %><br />
      <%= f.email_field :email, :autofocus => true %></div>

      <div><%= f.label :password %><br />
      <%= f.password_field :password %></div>

      <div><%= f.label :password_confirmation %><br />
      <%= f.password_field :password_confirmation %></div>

      <div><%= f.submit "Sign up" %></div>
    <% end %>

    <%= render "devise/shared/links" %>
  </div>
</div>

我想将它包装在所有设计视图上,所以我想创建一个结构,如:

因此,我将其保存为 erb 文件并找出某种方法来进行此包装,而无需修改每个设计视图

4

1 回答 1

3

为什么不创建设计布局并将列结构添加到布局中?

devise.html.erb尝试在您的布局文件夹中创建一个。

然后在使用它的控制器中,您可以调用它:

class UsersController < ApplicationController
  layout 'devise'
end

您甚至可以仅将布局用于特定操作或一组操作:

layout 'devise', only: :new # Use what you want; use an array for multiple values [:new, :show]
于 2013-08-13T15:13:24.990 回答