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

index.html.haml « deploy_keys « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 007da8c1d29fde21f58047c6c257e77bfecbe23b (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
- page_title "Deploy Keys"

%h3.page-title.deploy-keys-title
  Public deploy keys (#{@deploy_keys.count})
  .pull-right
    = link_to 'New deploy key', new_admin_deploy_key_path, class: 'btn btn-new btn-sm btn-inverted'

- if @deploy_keys.any?
  .table-holder.deploy-keys-list
    %table.table
      %thead
        %tr
          %th.col-sm-2 Title
          %th.col-sm-4 Fingerprint
          %th.col-sm-2 Write access allowed
          %th.col-sm-2 Added at
          %th.col-sm-2
      %tbody
        - @deploy_keys.each do |deploy_key|
          %tr
            %td
              %strong= deploy_key.title
            %td
              %code.key-fingerprint= deploy_key.fingerprint
            %td
              - if deploy_key.can_push?
                Yes
              - else
                No
            %td
              %span.cgray
                added #{time_ago_with_tooltip(deploy_key.created_at)}
            %td
              = link_to 'Remove', admin_deploy_key_path(deploy_key), data: { confirm: 'Are you sure?'}, method: :delete, class: 'btn btn-sm btn-remove delete-key pull-right'