##// END OF EJS Templates
Adding 1.0.0's release date....
Adding 1.0.0's release date. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3853 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2923:8c769c546f33
r3739:854ba2a8d26e
Show More
_form.rhtml
35 lines | 1.5 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'user' %>
<!--[form:user]-->
Jean-Philippe Lang
Move checkbox for "Send account information to the user" to be clicked before the "Create" button (#4193)....
r2923 <div class="box tabular">
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.text_field :login, :required => true, :size => 25 %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><%= f.text_field :firstname, :required => true %></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.text_field :lastname, :required => true %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><%= f.text_field :mail, :required => true %></p>
<p><%= f.select :language, lang_options_for_select %></p>
Eric Davis
Added a system setting for allowing OpenID logins and registrations...
r2388 <% if Setting.openid? %>
Eric Davis
Added the ability to login via OpenID....
r2381 <p><%= f.text_field :identity_url %></p>
Eric Davis
Added a system setting for allowing OpenID logins and registrations...
r2388 <% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 <% @user.custom_field_values.each do |value| %>
<p><%= custom_field_tag_with_label :user, value %></p>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Prevent admin users from making themselves non-administrator (#1276)....
r1435 <p><%= f.check_box :admin, :disabled => (@user == User.current) %></p>
Eric Davis
Added several more plugin hooks:...
r2535 <%= call_hook(:view_users_form, :user => @user, :form => f) %>
Jean-Philippe Lang
0.3 unstable...
r10 </div>
Jean-Philippe Lang
* new report: project activity...
r42
Jean-Philippe Lang
Move checkbox for "Send account information to the user" to be clicked before the "Create" button (#4193)....
r2923 <div class="box tabular">
Jean-Philippe Lang
* new report: project activity...
r42 <h3><%=l(:label_authentication)%></h3>
<% unless @auth_sources.empty? %>
Jean-Philippe Lang
Password fields hidden on users/add form when selecting an external authentication mode....
r544 <p><%= f.select :auth_source_id, ([[l(:label_internal), ""]] + @auth_sources.collect { |a| [a.name, a.id] }), {}, :onchange => "if (this.value=='') {Element.show('password_fields');} else {Element.hide('password_fields');}" %></p>
Jean-Philippe Lang
* new report: project activity...
r42 <% end %>
Jean-Philippe Lang
Password fields hidden on users/add form when selecting an external authentication mode....
r544 <div id="password_fields" style="<%= 'display:none;' if @user.auth_source %>">
Jean-Philippe Lang
* new report: project activity...
r42 <p><label for="password"><%=l(:field_password)%><span class="required"> *</span></label>
Jean-Philippe Lang
Added some attributes length validations....
r397 <%= password_field_tag 'password', nil, :size => 25 %><br />
Jean-Philippe Lang
Makes minimum password length configurable....
r2586 <em><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
Jean-Philippe Lang
* new report: project activity...
r42 <p><label for="password_confirmation"><%=l(:field_password_confirmation)%><span class="required"> *</span></label>
<%= password_field_tag 'password_confirmation', nil, :size => 25 %></p>
</div>
Jean-Philippe Lang
Password fields hidden on users/add form when selecting an external authentication mode....
r544 </div>
Jean-Philippe Lang
* new report: project activity...
r42 <!--[eoform:user]-->