diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-01-15 12:52:41 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-01-15 12:52:41 +0000 |
commit | 6d21b3c4aea80589c3c6bbda2957edf098e10ec9 (patch) | |
tree | 971228493415f93621409f1a7c01609da3343f30 /app/views/settings | |
parent | df18ece50437b105091f3e26cfa6748fd45fe12f (diff) | |
download | redmine-6d21b3c4aea80589c3c6bbda2957edf098e10ec9.tar.gz redmine-6d21b3c4aea80589c3c6bbda2957edf098e10ec9.zip |
Add default timezone for new users (#16484).
git-svn-id: http://svn.redmine.org/redmine/trunk@16200 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/settings')
-rw-r--r-- | app/views/settings/_authentication.html.erb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/settings/_authentication.html.erb b/app/views/settings/_authentication.html.erb index 15367813a..fd3c65c28 100644 --- a/app/views/settings/_authentication.html.erb +++ b/app/views/settings/_authentication.html.erb @@ -41,6 +41,8 @@ <div class="tabular settings"> <p><%= setting_check_box :default_users_hide_mail, :label => :field_hide_mail %></p> + + <p><%= setting_select :default_users_time_zone, ActiveSupport::TimeZone.all.collect {|z| [ z.to_s, z.name ]}, :label => :field_time_zone, :blank => :label_none %></p> </div> </fieldset> |