aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.rhtml
blob: 286f850718f02908a8e9582e82798072007fe206 (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 %>' %>