aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb
blob: e5de92222d44ff72cb9906bee708b52a9c8e2d8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<h1>New <%= singular_name %></h1>

<%%= error_messages_for :<%= singular_name %> %>

<%% form_for(@<%= singular_name %>) do |f| %>
<% for attribute in attributes -%>
  <p>
		<%%= f.label :<%= attribute.name %> %><br />
    <%%= f.<%= attribute.field_type %> :<%= attribute.name %> %>
  </p>
<% end -%>
  <p>
    <%%= f.submit "Create" %>
  </p>
<%% end %>

<%%= link_to 'Back', <%= plural_name %>_path %>