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

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

<%% form_for(:<%= singular_name %>, :url => <%= plural_name %>_path) do |f| %>
<% for attribute in attributes -%>
  <p>
    <b><%= attribute.column.human_name %></b><br />
    <%%= f.<%= attribute.field_type %> :<%= attribute.name %> %>
  </p>

<% end -%>
  <p>
    <%%= submit_tag "Create" %>
  </p>
<%% end %>

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