debian-mirror-gitlab/app/views/admin/deploy_keys/index.html.haml

28 lines
960 B
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- page_title "Deploy Keys"
2016-06-02 11:05:42 +05:30
.panel.panel-default.prepend-top-default
2015-04-26 12:48:37 +05:30
.panel-heading
Public deploy keys (#{@deploy_keys.count})
2016-04-02 18:10:28 +05:30
.controls
2015-04-26 12:48:37 +05:30
= link_to 'New Deploy Key', new_admin_deploy_key_path, class: "btn btn-new btn-sm"
- if @deploy_keys.any?
2015-11-26 14:37:03 +05:30
.table-holder
%table.table
%thead.panel-heading
2015-04-26 12:48:37 +05:30
%tr
2015-11-26 14:37:03 +05:30
%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"