aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb
blob: cca1d61c687b79778c8fc90c10ac412af92372bd (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                     
 
                                             

                          

                                  
                                                

                                                                

          
                             


          
                                               
                                              
<h1>Editing <%= singular_name %></h1>

<%% form_for(@<%= 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>
    <%%= f.submit 'Update' %>
  </p>
<%% end %>

<%%= link_to 'Show', @<%= singular_name %> %> |
<%%= link_to 'Back', <%= plural_name %>_path %>