aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.rhtml
blob: 3521b00536731819f1e943d05c3f719822c03020 (plain) (blame)
1
2
3
4
5
6
7
8
<h1>New <%= singular_name %></h1>

<%%= start_form_tag :action => 'create<%= @suffix %>' %>
  <%%= render_partial "form" %>
  <%%= submit_tag "Create" %>
<%%= end_form_tag %>

<%%= link_to 'Back', :action => 'list<%= suffix %>' %>