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

_show.html.haml « deploy_keys « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68b00568c6d79bcfbb084ddb2cb94d025ae2a296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
%tr
  %td
    %a{href: project_deploy_key_path(key.project, key)}
      %strong= key.title
  %td
    %span.update-author
      Added
      = time_ago_in_words(key.created_at)
      ago
  %td
    = link_to 'Remove', project_deploy_key_path(key.project, key), confirm: 'Are you sure?', method: :delete, class: "btn btn-remove delete-key btn-small right"