ページのビルダーを提供する Rails プラグインを探していshow.html.erb
ます。
たとえば、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 %>
このようなビルダーは存在しますか?
ありがとう
EDIT:ビルダーがTwitter Bootstrapを使用している場合、それはさらに良いです:)