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

_key.html.haml « keys « profiles « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f80cd8cddc54d78b10a1d04ae8881f2df431b96c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
- icon_classes = 'settings-list-icon gl-display-none gl-sm-display-block'

%tr.key-list-item
  %td{ data: { label: _('Title'), testid: 'title' } }
    = link_to path_to_key(key, is_admin) do
      = key.title

  %td{ data: { label: s_('Profiles|Key'), testid: 'key' } }
    .gl-align-items-center{ class: 'gl-display-flex! gl-pl-0!' }
      - if key.valid? && !key.expired?
        = sprite_icon('key', css_class: icon_classes)
      - else
        %span.gl-display-inline-block.has-tooltip{ title: ssh_key_expiration_tooltip(key) }
          = sprite_icon('warning-solid', css_class: icon_classes)
      %span.gl-text-truncate.gl-sm-ml-3
        = key.fingerprint

  %td{ data: { label: s_('Profiles|Usage type'), testid: 'usage-type' } }
    = ssh_key_usage_types.invert[key.usage_type]

  %td{ data: { label: s_('Profiles|Created'), testid: 'created' } }
    = html_escape(s_('%{time_ago}')) % { time_ago: time_ago_with_tooltip(key.created_at).html_safe}

  %td{ data: { label: s_('Profiles|Last used'), testid: 'last-used' } }
    -# TODO: Remove this conditional when https://gitlab.com/gitlab-org/gitlab/-/issues/324764 is resolved.
    - if Feature.enabled?(:disable_ssh_key_used_tracking)
      = _('Unavailable')
      = link_to sprite_icon('question-o'), help_page_path('user/ssh', anchor: 'view-your-accounts-ssh-keys')
    - else
      = key.last_used_at ? time_ago_with_tooltip(key.last_used_at) : _('Never')

  %td{ data: { label: s_('Profiles|Expires'), testid: 'expires' } }
    - if key.expired?
      %span.gl-text-red-500
        = s_('Profiles|Expired')
        = key.expires_at.to_date
    - elsif key.expires_at
      = key.expires_at.to_date
    - else
      = _('Never')

  %td{ data: { label: _('Actions'), testid: 'actions' } }
    %div{ class: 'gl-display-flex! gl-pl-0!' }
      - if key.can_delete?
        - if key.signing? && !is_admin
          = render Pajamas::ButtonComponent.new(size: :small, button_options: { class: 'js-confirm-modal-button', 'aria-label' => _('Revoke'), data: ssh_key_revoke_modal_data(key, revoke_profile_key_path(key)) }) do
            = _('Revoke')
        .gl-pl-3
          = render Pajamas::ButtonComponent.new(size: :small, icon: 'remove', button_options: { title: _('Remove'), 'aria-label' => _('Remove'), class: 'js-confirm-modal-button', data: ssh_key_delete_modal_data(key, path_to_key(key, is_admin)) })