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: a4f1ce4afc075178ad86f61e15003f83974d5a88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- add_to_breadcrumbs _('Users'), admin_users_path
- breadcrumb_title @user.name
- page_title _("Identities"), @user.name, _("Users")
= render 'admin/users/head'

= link_to _('New identity'), new_admin_user_identity_path, class: 'float-right gl-button btn btn-success'
- if @identities.present?
  .table-holder
    %table.table
      %thead
        %tr
          %th= _('Provider')
          %th= _('Identifier')
          %th
      = render @identities
- else
  %h4= _('This user has no identities')