mirror of
https://github.com/meineerde/redmine.git
synced 2025-10-17 17:01:01 +00:00
Patch by Kenta Kumojima (user:kumojima). git-svn-id: https://svn.redmine.org/redmine/trunk@23932 e93f8b46-1217-0410-a6f0-8f06a7374b81
8 lines
422 B
Plaintext
8 lines
422 B
Plaintext
<%= labelled_form_for @user, :html => {:multipart => true} do |f| %>
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
|
<% if @user.active? && email_delivery_enabled? && @user != User.current -%>
|
|
<p><label><%= check_box_tag 'send_information', 1, params[:send_information] %> <%= l(:label_send_information) %></label></p>
|
|
<% end -%>
|
|
<p class="mobile-show"><%= submit_tag l(:button_save) %></p>
|
|
<% end %>
|