1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 09:21:12 +00:00
redmine/app/views/settings/_users.html.erb
Jean-Philippe Lang 51eedb884b Add Users tab to application settings.
git-svn-id: http://svn.redmine.org/redmine/trunk@17396 e93f8b46-1217-0410-a6f0-8f06a7374b81
2018-06-17 08:23:06 +00:00

21 lines
796 B
Plaintext

<%= form_tag({:action => 'edit', :tab => 'users'}) do %>
<div class="box tabular settings">
<p><%= setting_text_field :max_additional_emails, :size => 6 %></p>
<p><%= setting_check_box :unsubscribe %></p>
</div>
<fieldset class="box tabular settings">
<legend><%= l(:label_default_values_for_new_users) %></legend>
<p><%= setting_check_box :default_users_hide_mail, :label => :field_hide_mail %></p>
<p><%= setting_select(:default_notification_option, User.valid_notification_options.collect {|o| [l(o.last), o.first.to_s]}) %></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>
</fieldset>
<%= submit_tag l(:button_save) %>
<% end %>