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

<%% form_tag :action => 'create<%= @suffix %>' do %>
  <%%= render :partial => 'form' %>
  <%%= submit_tag "Create" %>
<%% end %>

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