2019-12-21 20:55:43 +05:30
|
|
|
.gl-responsive-table-row{ role: 'row', data: { qa_selector: 'user_row_content' } }
|
2019-03-02 22:35:43 +05:30
|
|
|
.table-section.section-40
|
|
|
|
.table-mobile-header{ role: 'rowheader' }
|
|
|
|
= _('Name')
|
|
|
|
.table-mobile-content
|
|
|
|
= render 'user_detail', user: user
|
2021-01-03 14:25:43 +05:30
|
|
|
.table-section.section-10
|
|
|
|
.table-mobile-header{ role: 'rowheader' }
|
|
|
|
= _('Projects')
|
|
|
|
.table-mobile-content.gl-str-truncated{ data: { testid: "user-project-count-#{user.id}" } }
|
|
|
|
= user.authorized_projects.length
|
|
|
|
.table-section.section-15
|
2019-03-02 22:35:43 +05:30
|
|
|
.table-mobile-header{ role: 'rowheader' }
|
|
|
|
= _('Created on')
|
|
|
|
.table-mobile-content
|
|
|
|
= l(user.created_at.to_date, format: :admin)
|
|
|
|
.table-section.section-15
|
|
|
|
.table-mobile-header{ role: 'rowheader' }
|
|
|
|
= _('Last activity')
|
|
|
|
.table-mobile-content
|
|
|
|
= user.last_activity_on.nil? ? _('Never') : l(user.last_activity_on, format: :admin)
|
2020-04-22 19:07:51 +05:30
|
|
|
- unless user.internal?
|
|
|
|
.table-section.section-20.table-button-footer
|
|
|
|
.table-action-buttons
|
2020-11-24 15:15:51 +05:30
|
|
|
= link_to _('Edit'), edit_admin_user_path(user), id: "edit_#{dom_id(user)}", class: 'btn gl-button btn-default'
|
2020-04-22 19:07:51 +05:30
|
|
|
- unless user == current_user
|
2021-01-29 00:20:46 +05:30
|
|
|
%button.dropdown-new.btn.gl-button.btn-default{ type: 'button', data: { testid: "user-action-button-#{user.id}", toggle: 'dropdown' } }
|
2020-04-22 19:07:51 +05:30
|
|
|
= sprite_icon('settings')
|
|
|
|
= sprite_icon('chevron-down')
|
2021-01-29 00:20:46 +05:30
|
|
|
%ul.dropdown-menu.dropdown-menu-right{ data: { testid: "user-action-dropdown-#{user.id}" } }
|
2020-04-22 19:07:51 +05:30
|
|
|
%li.dropdown-header
|
|
|
|
= _('Settings')
|
2019-12-21 20:55:43 +05:30
|
|
|
%li
|
2020-04-22 19:07:51 +05:30
|
|
|
- if user.ldap_blocked?
|
|
|
|
%span.small
|
|
|
|
= s_('AdminUsers|Cannot unblock LDAP blocked users')
|
|
|
|
- elsif user.blocked?
|
2021-01-03 14:25:43 +05:30
|
|
|
- if user.blocked_pending_approval?
|
|
|
|
= link_to s_('AdminUsers|Approve'), approve_admin_user_path(user), method: :put
|
2021-02-22 17:27:13 +05:30
|
|
|
= link_to s_('AdminUsers|Reject'), reject_admin_user_path(user), method: :delete
|
2021-01-03 14:25:43 +05:30
|
|
|
- else
|
2021-04-29 21:17:54 +05:30
|
|
|
%button.gl-button.btn.btn-default-tertiary.js-confirm-modal-button{ data: user_unblock_data(user) }
|
2021-02-22 17:27:13 +05:30
|
|
|
= s_('AdminUsers|Unblock')
|
2020-04-22 19:07:51 +05:30
|
|
|
- else
|
2021-04-29 21:17:54 +05:30
|
|
|
%button.gl-button.btn.btn-default-tertiary.js-confirm-modal-button{ data: user_block_data(user, user_block_effects) }
|
2020-04-22 19:07:51 +05:30
|
|
|
= s_('AdminUsers|Block')
|
|
|
|
- if user.can_be_deactivated?
|
|
|
|
%li
|
2021-04-29 21:17:54 +05:30
|
|
|
%button.gl-button.btn.btn-default-tertiary.js-confirm-modal-button{ data: user_deactivation_data(user, user_deactivation_effects) }
|
2020-04-22 19:07:51 +05:30
|
|
|
= s_('AdminUsers|Deactivate')
|
|
|
|
- elsif user.deactivated?
|
|
|
|
%li
|
2021-04-29 21:17:54 +05:30
|
|
|
%button.gl-button.btn.btn-default-tertiary.js-confirm-modal-button{ data: user_activation_data(user) }
|
2021-02-22 17:27:13 +05:30
|
|
|
= s_('AdminUsers|Activate')
|
2020-04-22 19:07:51 +05:30
|
|
|
- if user.access_locked?
|
|
|
|
%li
|
|
|
|
= link_to _('Unlock'), unlock_admin_user_path(user), method: :put, data: { confirm: _('Are you sure?') }
|
2021-02-22 17:27:13 +05:30
|
|
|
- if can?(current_user, :destroy_user, user) && !user.blocked_pending_approval?
|
2020-04-22 19:07:51 +05:30
|
|
|
%li.divider
|
|
|
|
- if user.can_be_removed?
|
|
|
|
%li
|
2021-04-29 21:17:54 +05:30
|
|
|
%button.js-delete-user-modal-button.gl-button.btn.btn-danger-tertiary{ data: { 'gl-modal-action': 'delete',
|
2020-04-22 19:07:51 +05:30
|
|
|
delete_user_url: admin_user_path(user),
|
|
|
|
block_user_url: block_admin_user_path(user),
|
|
|
|
username: sanitize_name(user.name) } }
|
|
|
|
= s_('AdminUsers|Delete user')
|
|
|
|
%li
|
2021-04-29 21:17:54 +05:30
|
|
|
%button.js-delete-user-modal-button.gl-button.btn.btn-danger-tertiary{ data: { 'gl-modal-action': 'delete-with-contributions',
|
2020-04-22 19:07:51 +05:30
|
|
|
delete_user_url: admin_user_path(user, hard_delete: true),
|
|
|
|
block_user_url: block_admin_user_path(user),
|
|
|
|
username: sanitize_name(user.name) } }
|
|
|
|
= s_('AdminUsers|Delete user and contributions')
|