summaryrefslogtreecommitdiff
path: root/app/views/admin/deploy_keys/index.html.haml
blob: 41c438999781c8c99428397f14b7183fa2cb3490 (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
- page_title "Deploy Keys"
.panel.panel-default
  .panel-heading
    Public deploy keys (#{@deploy_keys.count})
    .controls
      = link_to 'New Deploy Key', new_admin_deploy_key_path, class: "btn btn-new btn-sm"
  - if @deploy_keys.any?
    .table-holder
      %table.table
        %thead.panel-heading
          %tr
            %th Title
            %th Fingerprint
            %th Added at
            %th
        %tbody
          - @deploy_keys.each do |deploy_key|
            %tr
              %td
                %strong= deploy_key.title
              %td
                %code.key-fingerprint= deploy_key.fingerprint
              %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"