Sha256: 49d6ea9f266b466faf849d3eb8d9b8ee8a9d344ff5585f7efd39009449c8cfae
Contents?: true
Size: 1.13 KB
Versions: 9
Compression:
Stored size: 1.13 KB
Contents
<%%= form_for(@<%= singular_table_name %>) do |f| %> <%% if @<%= singular_table_name %>.errors.any? %> <div id="error_explanation"> <h2><%%= pluralize(@<%= singular_table_name %>.errors.count, "error") %> prohibited this <%= singular_table_name %> from being saved:</h2> <ul> <%% @<%= singular_table_name %>.errors.full_messages.each do |message| %> <li><%%= message %></li> <%% end %> </ul> </div> <%% end %> <% attributes.each do |attribute| -%> <div class="field"> <% if attribute.password_digest? -%> <%%= f.label :password %><br> <%%= f.password_field :password %> </div> <div> <%%= f.label :password_confirmation %><br> <%%= f.password_field :password_confirmation %> <% else -%> <%- if attribute.reference? -%> <%%= f.label :<%= attribute.column_name %> %><br> <%%= f.<%= attribute.field_type %> :<%= attribute.column_name %> %> <%- else -%> <%%= f.label :<%= attribute.name %> %><br> <%%= f.<%= attribute.field_type %> :<%= attribute.name %> %> <%- end -%> <% end -%> </div> <% end -%> <div class="actions"> <%%= f.submit %> </div> <%% end %>
Version data entries
9 entries across 9 versions & 1 rubygems