##// END OF EJS Templates
Treat Calendar and Gantt pages as separate modules. #6153...
Treat Calendar and Gantt pages as separate modules. #6153 This will let the Issue Tracking, Gantt, and Calendar modules be enabled or disabled as needed. A database migration will enable the Gantt and Calendar for all existing projects that have Issue Tracking enabled. Contributed by Adam Soltys git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4013 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3745:4fef8b601d3b
r3899:fc9b984cc147
Show More
_authentication.rhtml
27 lines | 1.2 KiB | text/html+ruby | RhtmlLexer
/ app / views / settings / _authentication.rhtml
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 <% form_tag({:action => 'edit', :tab => 'authentication'}) do %>
<div class="box tabular settings">
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_check_box :login_required %></p>
<p><%= setting_select :autologin, [1, 7, 30, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]}, :blank => :label_disabled %></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_text_field :password_min_length, :size => 6 %></p>
<p><%= setting_check_box :lost_password, :label => :label_password_lost %></p>
<p><%= setting_check_box :openid, :disabled => !Object.const_defined?(:OpenID) %></p>
Jean-Philippe Lang
Move API setting to Authentication tab and add translations strings....
r3108
<p><%= setting_check_box :rest_api_enabled %></p>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 </div>
<div style="float:right;">
Eric Davis
Added icon for the LDAP authentication menu item. #5775...
r3745 <%= link_to l(:label_ldap_authentication), {:controller => 'ldap_auth_sources', :action => 'index'}, :class => 'icon icon-server-authentication' %>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 </div>
<%= submit_tag l(:button_save) %>
<% end %>