Sha256: 959901294f8e17f304e297301b16411f7d24738ba090100f54caca10ac09e957

Contents?: true

Size: 1.93 KB

Versions: 34

Compression:

Stored size: 1.93 KB

Contents

<%= form_tag({:action => 'edit', :tab => 'authentication'}) do %>

<div class="box tabular settings">
<p><%= setting_check_box :login_required %></p>

<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>

<p><%= setting_select :self_registration, [[l(:label_disabled), "0"],
                                           [l(:label_registration_activation_by_email), "1"],
                                           [l(:label_registration_manual_activation), "2"],
                                           [l(:label_registration_automatic_activation), "3"]] %></p>

<p><%= setting_check_box :unsubscribe %></p>

<p><%= setting_text_field :password_min_length, :size => 6 %></p>

<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>

<p><%= setting_check_box :lost_password, :label => :label_password_lost %></p>

<p><%= setting_text_field :max_additional_emails, :size => 6 %></p>

<p><%= setting_check_box :openid, :disabled => !Object.const_defined?(:OpenID) %></p>

<p><%= setting_check_box :rest_api_enabled %></p>

<p><%= setting_check_box :jsonp_enabled %></p>
</div>

<fieldset class="box">
  <legend><%= l(:label_session_expiration) %></legend>

  <div class="tabular settings">
    <p><%= setting_select :session_lifetime, [[l(:label_disabled), 0]] + [1, 7, 30, 60, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), (days * 60 * 24).to_s]} %></p>
    <p><%= setting_select :session_timeout, [[l(:label_disabled), 0]] + [1, 2, 4, 8, 12, 24, 48].collect{|hours| [l('datetime.distance_in_words.x_hours', :count => hours), (hours * 60).to_s]} %></p>
  </div>
  
  <p><em class="info"><%= l(:text_session_expiration_settings) %></em></p>
</fieldset>

<%= submit_tag l(:button_save) %>
<% end %>

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
redmine_extensions-0.0.39 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.0.38 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.0.37 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.1.11 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.1.10 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.0.36 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.0.34 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.1.09 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.1.07 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.1.06 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.1.05 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.1.04 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.1.03 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.0.33 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.1.02 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.1.01 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.0.29 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.0.28 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.0.27 spec/redmine/app/views/settings/_authentication.html.erb
redmine_extensions-0.0.24 spec/redmine/app/views/settings/_authentication.html.erb