Sha256: c478731bb31b99682dddac9439e8de658565c94fb3dcf71c4d46729b7729da81
Contents?: true
Size: 634 Bytes
Versions: 4
Compression:
Stored size: 634 Bytes
Contents
<h1>Editing <%= singular_name %></h1> <%% form_for(@<%= singular_name %>) do |f| %> <%%= f.error_messages %> <% for attribute in attributes -%> <p> <%%= f.label :<%= attribute.name %> %><br /> <%- if auto_complete_attributes.include? attribute.name -%> <%%= text_field_with_auto_complete :<%= singular_name %>, :<%= attribute.name %>, {}, { :method => :get } %> <%- else -%> <%%= f.<%= attribute.field_type %> :<%= attribute.name %> %> <%- end -%> </p> <% end -%> <p> <%%= f.submit 'Update' %> </p> <%% end %> <%%= link_to 'Show', @<%= singular_name %> %> | <%%= link_to 'Back', <%= plural_name %>_path %>
Version data entries
4 entries across 4 versions & 1 rubygems