2016-12-13 19:44:28 +00:00
|
|
|
<%= labelled_form_for @user, :html => {:multipart => true} do |f| %>
|
2011-09-17 01:12:56 +00:00
|
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
2015-12-06 20:46:26 +00:00
|
|
|
<% if @user.active? && email_delivery_enabled? && @user != User.current -%>
|
2017-04-03 10:48:59 +00:00
|
|
|
<p><label><%= check_box_tag 'send_information', 1, params[:send_information] %> <%= l(:label_send_information) %></label></p>
|
2011-09-17 01:12:56 +00:00
|
|
|
<% end -%>
|
2025-08-22 09:03:07 +00:00
|
|
|
<p class="mobile-show"><%= submit_tag l(:button_save) %></p>
|
2008-05-02 15:21:21 +00:00
|
|
|
<% end %>
|