You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_users.html.erb 796B

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