mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
17 lines
No EOL
384 B
Text
17 lines
No EOL
384 B
Text
<h1>New <%= 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 'Create' %>
|
|
</p>
|
|
<%% end %>
|
|
|
|
<%%= link_to 'Back', <%= plural_name %>_path %> |