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.

bulk_destroy.html.erb 629B

12345678910111213141516171819202122
  1. <%= title l(:label_confirmation) %>
  2. <%= form_tag(bulk_destroy_users_path(ids: @users.map(&:id)), method: :delete) do %>
  3. <div class="warning">
  4. <p><%= simple_format l :text_users_bulk_destroy_head %></p>
  5. <% @users.each do |user| %>
  6. <p><strong><%= user.name %></strong> (<%= user.login %>)</p>
  7. <% end %>
  8. <p><%= l :text_users_bulk_destroy_confirm, yes: l(:general_text_Yes) %></p>
  9. <p><%= text_field_tag 'confirm' %></p>
  10. </div>
  11. <p>
  12. <%= submit_tag l(:button_delete), class: 'btn-alert btn-small' %>
  13. <%= submit_tag l(:button_lock), class: 'btn', name: 'lock' %>
  14. <%= link_to l(:button_cancel), users_path %>
  15. </p>
  16. <% end %>