##// END OF EJS Templates
Reverting commit r1748. Some environments are not allowing the cached file to...
Reverting commit r1748. Some environments are not allowing the cached file to write to public, causing all JavaScript to fail. Javascripts are now cached into a single file for downloads in production mode. #1186 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1771 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1578:ce6cf66f6c3a
r1770:8f3a04ce6906
Show More
_form.rhtml
31 lines | 1.4 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'user' %>
<!--[form:user]-->
Jean-Philippe Lang
* new report: project activity...
r42 <div class="box">
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>
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>
Jean-Philippe Lang
0.3 unstable...
r10 </div>
Jean-Philippe Lang
* new report: project activity...
r42
<div class="box">
<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
Removed the 12 characters limit on passwords....
r914 <em><%= l(:text_caracters_minimum, 4) %></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]-->