所以我正在使用设计。它很有趣,但我需要将所有视图包裹在一个漂亮的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文件并找出一些方法来进行此包装而不修改每个设计视图
答案 0 :(得分: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]