##// END OF EJS Templates
Deprecates unused stuff (#12909)....
Deprecates unused stuff (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15338 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14584:389527296e02
r14956:db64340419ec
Show More
_general.html.erb
7 lines | 350 B | text/plain | TextLexer
/ app / views / users / _general.html.erb
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= labelled_form_for @user do |f| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/users/_general.html.erb...
r7151 <%= render :partial => 'form', :locals => { :f => f } %>
Jean-Philippe Lang
Prevent admins from sending themselves their own password (#21436)....
r14584 <% if @user.active? && email_delivery_enabled? && @user != User.current -%>
Toshi MARUYAMA
replace tabs to spaces at app/views/users/_general.html.erb...
r7151 <p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label></p>
<% end -%>
<p><%= submit_tag l(:button_save) %></p>
Jean-Philippe Lang
Split user edit screen into tabs....
r1389 <% end %>