diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-07-21 15:55:50 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-07-21 15:55:50 +0000 |
commit | 82f5831545512f254b7e3ba01803163e8b6d755a (patch) | |
tree | 838d26cecade5733ce2eab07e96db0f53e54f1c0 /app/views/groups/new.html.erb | |
parent | f595197ecfd57e7c3a61564d7409dfed88a50eff (diff) | |
download | redmine-82f5831545512f254b7e3ba01803163e8b6d755a.tar.gz redmine-82f5831545512f254b7e3ba01803163e8b6d755a.zip |
Adds 'Create and continue' button on the new group form.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6304 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/groups/new.html.erb')
-rw-r--r-- | app/views/groups/new.html.erb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/groups/new.html.erb b/app/views/groups/new.html.erb index 469fc9b14..e983102af 100644 --- a/app/views/groups/new.html.erb +++ b/app/views/groups/new.html.erb @@ -2,5 +2,8 @@ <% form_for(@group, :builder => TabularFormBuilder, :lang => current_language) do |f| %> <%= render :partial => 'form', :locals => { :f => f } %> -<p><%= f.submit l(:button_create) %></p> +<p> + <%= f.submit l(:button_create) %> + <%= f.submit l(:button_create_and_continue), :name => 'continue' %> +</p> <% end %> |