OSDN Git Service

Adds a 'Create and continue' button on new user form.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Dec 2009 10:51:33 +0000 (10:51 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Dec 2009 10:51:33 +0000 (10:51 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3204 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/users_controller.rb
app/views/users/add.rhtml

index b800a30..99b01c3 100644 (file)
@@ -82,7 +82,9 @@ class UsersController < ApplicationController
       if @user.save
         Mailer.deliver_account_information(@user, params[:password]) if params[:send_information]
         flash[:notice] = l(:notice_successful_create)
-        redirect_to :controller => 'users', :action => 'edit', :id => @user
+        redirect_to(params[:continue] ? {:controller => 'users', :action => 'add'} : 
+                                        {:controller => 'users', :action => 'edit', :id => @user})
+        return
       end
     end
     @auth_sources = AuthSource.find(:all)
index 9f5320c..2e0743e 100644 (file)
@@ -3,5 +3,8 @@
 <% labelled_tabular_form_for :user, @user, :url => { :action => "add" }, :html => { :class => nil } do |f| %>
        <%= render :partial => 'form', :locals => { :f => f } %>
        <p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label></p>
-       <p><%= submit_tag l(:button_create) %></p>
+       <p>
+               <%= submit_tag l(:button_create) %>
+               <%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
+       </p>
 <% end %>