summaryrefslogtreecommitdiff
path: root/app/views/deploy_keys/show.html.haml
blob: 4a864fae9d7101718528f70f5fb7ecf2cd67d00f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
= render "repositories/head"
%h3.page_title
  Deploy key:
  = @key.title
  %small
    created at
    = @key.created_at.stamp("Aug 21, 2011")
.back_link
  = link_to project_deploy_keys_path(@project) do
    ← To keys list
%hr
%pre= @key.key
.right
  = link_to 'Remove', project_deploy_key_path(@key.project, @key), confirm: 'Are you sure?', method: :delete, class: "btn-remove btn delete-key"