8 lines
347 B
Plaintext
8 lines
347 B
Plaintext
<% form_for @user, :builder => TabularFormBuilder do |f| %>
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
|
<% if @user.active? && email_delivery_enabled? -%>
|
|
<p><label><%= check_box_tag 'send_information', 1, true %> <%= l(:label_send_information) %></label></p>
|
|
<% end -%>
|
|
<p><%= submit_tag l(:button_save) %></p>
|
|
<% end %>
|