Sha256: f3349aff67c567d33151d96c3b15981e82b9ddcc950e6ca82f9d9f410571813c
Contents?: true
Size: 556 Bytes
Versions: 7
Compression:
Stored size: 556 Bytes
Contents
<%%= form_for(@<%= singular_name %>, :url => save_action(@<%= singular_name %>, :mode => "draft")) do |f| %> <%% if @<%= singular_name %>.errors.any? %> <%% @<%= singular_name %>.errors.full_messages.each do |msg| %> <p><%%= msg %></p> <%% end %> <%% end %> <table class="bordered-table zebra-striped"> <% for attribute in attributes -%> <tr> <th><%%= f.label :<%= attribute.name %> %></th> <td><%%= f.<%= attribute.field_type %> :<%= attribute.name %> %></td> </tr> <% end -%> </table> <%%= f.submit :class => "btn primary" %> <%% end %>
Version data entries
7 entries across 7 versions & 1 rubygems