##// END OF EJS Templates
Don't require category or target version when they are not available (#20583)....
Don't require category or target version when they are not available (#20583). git-svn-id: http://svn.redmine.org/redmine/trunk@14733 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14265:b0be968d36f5
r14351:68620da79ab5
Show More
_authentication.html.erb
40 lines | 1.6 KiB | text/plain | TextLexer
/ app / views / settings / _authentication.html.erb
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({:action => 'edit', :tab => 'authentication'}) do %>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033
<div class="box tabular settings">
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_check_box :login_required %></p>
Jean-Baptiste Barth
Fixed: disabling autologin not persisted. #6438...
r4192 <p><%= setting_select :autologin, [[l(:label_disabled), 0]] + [1, 7, 30, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]} %></p>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084
<p><%= setting_select :self_registration, [[l(:label_disabled), "0"],
Toshi MARUYAMA
replace tabs to spaces at app/views/settings/_authentication.html.erb...
r7278 [l(:label_registration_activation_by_email), "1"],
[l(:label_registration_manual_activation), "2"],
[l(:label_registration_automatic_activation), "3"]] %></p>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084
Jean-Philippe Lang
Adds the ability for users to delete their own account (#10664). Can be disabled in application settings....
r9283 <p><%= setting_check_box :unsubscribe %></p>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_text_field :password_min_length, :size => 6 %></p>
Jean-Philippe Lang
Add the ability to expire passwords after a configurable number of days (#19458)....
r13882 <p>
<%= setting_select :password_max_age, [[l(:label_disabled), 0]] + [7, 30, 60, 90, 180, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]} %>
</p>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_check_box :lost_password, :label => :label_password_lost %></p>
Jean-Philippe Lang
Add support for multiple email addresses per user (#4244)....
r13504 <p><%= setting_text_field :max_additional_emails, :size => 6 %></p>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_check_box :openid, :disabled => !Object.const_defined?(:OpenID) %></p>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 </div>
Jean-Philippe Lang
Configurable session lifetime and timeout (#6597)....
r9614 <fieldset class="box">
<legend><%= l(:label_session_expiration) %></legend>
<div class="tabular settings">
Jean-Philippe Lang
Adds 4h, 8h and 12h as options for session maximum lifetime (#20933)....
r14265 <p><%= setting_select :session_lifetime, session_lifetime_options %></p>
<p><%= setting_select :session_timeout, session_timeout_options %></p>
Jean-Philippe Lang
Configurable session lifetime and timeout (#6597)....
r9614 </div>
<p><em class="info"><%= l(:text_session_expiration_settings) %></em></p>
</fieldset>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 <%= submit_tag l(:button_save) %>
<% end %>