Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « identities « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8077f0e15cac44b159420814ddcf56e9e111d2fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- add_to_breadcrumbs _('Users'), admin_users_path
- breadcrumb_title @user.name
- page_title _("Identities"), @user.name, _("Users")
= render 'admin/users/head'

%table.table.gl-table
  %thead
    %tr
      %th{ class: 'gl-border-t-0!' }= _('Provider')
      %th{ class: 'gl-border-t-0!' }= s_('Identity|Provider ID')
      %th{ class: 'gl-border-t-0!' }= _('Group')
      %th{ class: 'gl-border-t-0!' }= _('Identifier')
      %th{ class: 'gl-border-t-0!' }= s_('Identity|Active')
      %th{ class: 'gl-border-t-0!' }= _('Actions')
  - if identity_cells_to_render?(@identities, @user)
    = render_if_exists partial: 'admin/identities/scim_identity', collection: scim_identities_collection(@user)
    = render @identities
  - else
    %tbody
      %tr
        %td{ colspan: '6' }
          .text-center.my-2
            = _('This user has no identities')