blob: a4426f2d14200c5eacf530bd51579765f9b8db3f (
plain)
1
2
3
4
5
6
7
8
9
|
<h2><%= link_to l(:label_group_plural), groups_path %> » <%= l(:label_group_new) %></h2>
<% labelled_form_for @group do |f| %>
<%= render :partial => 'form', :locals => { :f => f } %>
<p>
<%= f.submit l(:button_create) %>
<%= f.submit l(:button_create_and_continue), :name => 'continue' %>
</p>
<% end %>
|