summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-11-19 22:28:43 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-11-19 22:28:43 +0000
commitdeb182337d14872c5481059382459f5c21502162 (patch)
treea46bb4e773e77ae63be280e31c2ac949507d1d6b /app/views
parenta1f3497ec46881753fc13d25c3cd2cb344ae27d8 (diff)
downloadredmine-deb182337d14872c5481059382459f5c21502162.tar.gz
redmine-deb182337d14872c5481059382459f5c21502162.zip
* Added time zone support: users can select their time zone on their account view.
* Updated Polish translation (Mariusz Olejnik). * Fixed: Projects should be listed with case mixed. git-svn-id: http://redmine.rubyforge.org/svn/trunk@917 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r--app/views/my/account.rhtml1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/my/account.rhtml b/app/views/my/account.rhtml
index 11bba9c8d..e64051771 100644
--- a/app/views/my/account.rhtml
+++ b/app/views/my/account.rhtml
@@ -14,6 +14,7 @@
<p><%= f.select :language, lang_options_for_select %></p>
<% fields_for :pref, @user.pref, :builder => TabularFormBuilder, :lang => current_language do |pref_fields| %>
+<p><%= pref_fields.select :time_zone, TimeZone.all.collect {|z| [ z.to_s, z.name ]}, :include_blank => true %></p>
<p><%= pref_fields.check_box :hide_mail %></p>
<% end %>
</div>