mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-26 10:21:14 +00:00
includes a confirmation page that also gives the opportunity to lock users instead of deleting them. Patch by Jens Krämer. git-svn-id: https://svn.redmine.org/redmine/trunk@21824 e93f8b46-1217-0410-a6f0-8f06a7374b81
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
<ul>
|
|
<% if @user %>
|
|
<% if @user.locked? %>
|
|
<li>
|
|
<%= context_menu_link l(:button_unlock), user_path(@user, user: { status: User::STATUS_ACTIVE }, back_url: @back), method: :put, class: 'icon icon-unlock' %>
|
|
</li>
|
|
<% elsif User.current != @user %>
|
|
<li>
|
|
<%= context_menu_link l(:button_lock), user_path(@user, user: { status: User::STATUS_LOCKED }, back_url: @back), method: :put, class: 'icon icon-lock' %>
|
|
</li>
|
|
<% end %>
|
|
|
|
<li>
|
|
<%= context_menu_link l(:button_edit), edit_user_path(@user, back_url: @back), class: 'icon icon-edit' %>
|
|
</li>
|
|
|
|
<% unless User.current == @user %>
|
|
<li>
|
|
<%= context_menu_link l(:button_delete), user_path(@user, back_url: @back),
|
|
method: :delete, class: 'icon icon-del' %>
|
|
</li>
|
|
<% end %>
|
|
<% else %>
|
|
<li>
|
|
<%= context_menu_link l(:button_delete),
|
|
{controller: 'users', action: 'bulk_destroy', ids: @users.map(&:id)},
|
|
method: :delete, class: 'icon icon-del' %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|