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

_table.html.haml « deploy_tokens « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b8a97a34f2648bc580d31f3f50d802103f33815 (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
50
51
52
53
54
= render Pajamas::CardComponent.new(card_options: { class: 'gl-new-card js-toggle-container' }, header_options: { class: 'gl-new-card-header' }, body_options: { class: 'gl-new-card-body gl-px-0' }) do |c|
  - c.with_header do
    .gl-new-card-title-wrapper
      %h5.gl-new-card-title
        = s_("DeployTokens|Active deploy tokens")
      .gl-new-card-count
        = sprite_icon('token', css_class: 'gl-mr-2')
        = active_tokens.length
    .gl-new-card-actions
      = render Pajamas::ButtonComponent.new(size: :small, button_options: { class: "js-toggle-button js-toggle-content" }) do
        = _('Add token')
  - c.with_body do
    .gl-new-card-add-form.gl-m-3.gl-mb-4.gl-display-none.js-toggle-content
      #js-new-deploy-token{ data: {
          container_registry_enabled: container_registry_enabled?(group_or_project),
          packages_registry_enabled: packages_registry_enabled?(group_or_project),
          create_new_token_path: create_deploy_token_path(group_or_project),
          token_type: group_or_project.is_a?(Group) ? 'group' : 'project',
          deploy_tokens_help_url: help_page_path('user/project/deploy_tokens/index')
        }
      }
    - if active_tokens.present?
      %table.table.b-table.gl-table.b-table-stacked-md
        %thead
          %tr
            %th= s_('DeployTokens|Name')
            %th= s_('DeployTokens|Username')
            %th= s_('DeployTokens|Created')
            %th= s_('DeployTokens|Expires')
            %th= s_('DeployTokens|Scopes')
            %th
        %tbody
          - active_tokens.each do |token|
            %tr
              %td{ data: { label: _('Name') }, class: 'gl-vertical-align-middle!' }
                = token.name
              %td{ data: { label: _('Username') }, class: 'gl-vertical-align-middle!' }
                = token.username
              %td{ data: { label: _('Created') }, class: 'gl-vertical-align-middle!' }
                = token.created_at.to_date.to_fs(:medium)
              %td{ data: { label: _('Expires') }, class: 'gl-vertical-align-middle!' }
                - if token.expires?
                  %span{ class: ('text-warning' if token.expires_soon?) }
                    = time_ago_with_tooltip(token.expires_at)
                - else
                  %span.token-never-expires-label= _('Never')
              %td{ data: { label: _('Scopes') }, class: 'gl-vertical-align-middle!' }
                = token.scopes.present? ? token.scopes.join(', ') : _('no scopes selected')
              %td{ data: { label: _('Actions') }, class: 'gl-vertical-align-middle!' }
                .js-deploy-token-revoke-button{ data: deploy_token_revoke_button_data(token: token, group_or_project: group_or_project) }

    - else
      .gl-new-card-empty.gl-px-5.gl-py-4
        = s_('DeployTokens|This %{entity_type} has no active deploy tokens.') % { entity_type: group_or_project.class.name.downcase }