8 lines
398 B
Plaintext
8 lines
398 B
Plaintext
<% labelled_tabular_form_for :user, @user, :url => { :controller => 'users', :action => "edit", :tab => nil }, :html => { :class => nil } do |f| %>
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
|
<% if @user.active? -%>
|
|
<p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label>
|
|
<% end -%>
|
|
<p><%= submit_tag l(:button_save) %></p>
|
|
<% end %>
|