git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2813 e93f8b46-1217-0410-a6f0-8f06a7374b81
8 lines
338 B
Plaintext
8 lines
338 B
Plaintext
<% labelled_tabular_form_for :user, @user, :url => { :controller => 'users', :action => "edit", :tab => nil } do |f| %>
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
|
<%= submit_tag l(:button_save) %>
|
|
<% if @user.active? %>
|
|
<%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %>
|
|
<% end %>
|
|
<% end %>
|