我正在寻找一个提供show.html.erb
页面构建器的 Rails 插件。
例如,使用 SimpleForm,new.html.erb
页面可能如下所示:
<%= simple_form_for(@user, :url => user_registration_path, :html => ... }) do |f| %>
<%= f.input :email, :required => true %>
<%= f.input :password, :required => true %>
<%= f.input :password_confirmation, :required => true %>
...
<% end %>
但是我无法找到仅显示字段的等价物。
生成的show.html.erb
页面如下所示:
<p>
<b>Email:</b>
<%= @user.email %>
</p>
...
但我想要类似的东西:
<%= simple_display_for(@user, :html => ... }) do |d| %>
<%= d.output :email %>
<%= d.output :name %>
...
<% end %>
这种建设者存在吗?
谢谢
编辑:如果构建者使用 Twitter Bootstrap,那就更好了 :)