From e9b94a19de65c6548d9f97e82f957d7eaf1729d5 Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Sat, 6 Nov 2021 09:11:58 +0000 Subject: Adds button to "Create and follow" when adding a subtask from the parent issue. Now the user have the following options: * Create: redirects the user to the parent task (existing behaviour) * Create and follow: redirects the user to the newly created subtask (new behaviour) * Create and add another: redirects the user to new subtask (existing behaviour). (#29076). git-svn-id: http://svn.redmine.org/redmine/trunk@21269 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/issues/new.html.erb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app/views/issues') diff --git a/app/views/issues/new.html.erb b/app/views/issues/new.html.erb index 22a174a11..92f6f251a 100644 --- a/app/views/issues/new.html.erb +++ b/app/views/issues/new.html.erb @@ -38,6 +38,9 @@ <%= submit_tag l(:button_create) %> + <% if params[:back_url] && params[:issue] && params[:issue][:parent_issue_id] %> + <%= submit_tag l(:button_create_and_follow), name: 'follow' %> + <% end %> <%= submit_tag l(:button_create_and_continue), :name => 'continue' %> <% end %> -- cgit v1.2.3