blob: ab61d7c21db3069e8a16b60f6cecfbe56b74bb6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<%= 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 %>
|