Sha256: daaa93454b7ebf8ff79eb7f30d5a01e4550569d1f5a7231bc20bebce2742881c
Contents?: true
Size: 571 Bytes
Versions: 18
Compression:
Stored size: 571 Bytes
Contents
<h1><%%= @<%= singular_name %>.new_record? ? 'New' : 'Editing' %> <%= singular_name.titleize %></h1> <%% form_for([:admin, @<%= singular_name %>]) do |f| %> <%%= f.error_messages %> <% for attribute in attributes -%> <p> <%%= f.label :<%= attribute.name %> %><br /> <%%= f.<%= attribute.field_type %> :<%= attribute.name %> %> </p> <% end -%> <p class="submission"> <%%= f.submit @<%= singular_name %>.new_record? ? 'Create' : 'Update', :disable_with => 'Submitting...' %> or <%%= link_to 'Back', admin_<%= plural_name %>_path %> </p> <%% end %>
Version data entries
18 entries across 18 versions & 1 rubygems