You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

destroy.html.erb 536B

1234567891011121314151617181920
  1. <%= title l(:label_confirmation) %>
  2. <%= form_tag user_path(@user), method: :delete do %>
  3. <div class="warning">
  4. <p><strong><%= @user.name %> (<%= @user.login %>)</strong></p>
  5. <p><%= l :text_user_destroy_confirmation, login: @user.login %></p>
  6. <p>
  7. <label for="confirm"><%= l :field_login %></label>
  8. <%= text_field_tag 'confirm' %>
  9. </p>
  10. </div>
  11. <p>
  12. <%= submit_tag l(:button_delete) %>
  13. <%= submit_tag l(:button_lock), name: 'lock' unless @user.locked? %>
  14. <%= link_to l(:button_cancel), users_path %>
  15. </p>
  16. <% end %>