diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-21 10:37:19 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-21 10:37:19 +0000 |
commit | 1d07bb91a7d1ec1c4eef3b4df5141419b35c213a (patch) | |
tree | ebb1958854cb2f236b876e5be44abc266faf6a5f /app/views/timelog/new.html.erb | |
parent | 11725be2788bfb3c100e82e4b24fc49c5303cd29 (diff) | |
download | redmine-1d07bb91a7d1ec1c4eef3b4df5141419b35c213a.tar.gz redmine-1d07bb91a7d1ec1c4eef3b4df5141419b35c213a.zip |
Adds a 'Create and continue' button on the spent time form (#9995).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8687 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/timelog/new.html.erb')
-rw-r--r-- | app/views/timelog/new.html.erb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/timelog/new.html.erb b/app/views/timelog/new.html.erb index fe6277738..6871c5f23 100644 --- a/app/views/timelog/new.html.erb +++ b/app/views/timelog/new.html.erb @@ -2,5 +2,6 @@ <% labelled_form_for @time_entry, :url => project_time_entries_path(@time_entry.project) do |f| %> <%= render :partial => 'form', :locals => {:f => f} %> - <%= submit_tag l(:button_save) %> + <%= submit_tag l(:button_create) %> + <%= submit_tag l(:button_create_and_continue), :name => 'continue' %> <% end %> |