_general.html.erb
7 lines
| 454 B
| text/plain
|
TextLexer
|
r4116 | <% labelled_tabular_form_for :user, @user, :url => { :controller => 'users', :action => "update", :tab => nil }, :html => { :method => :put, :class => nil } do |f| %> | ||
|
r7151 | <%= 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> | ||||
|
r1389 | <% end %> | ||