gitlabhq/app/views/deploy_keys/show.html.haml

15 lines
393 B
Plaintext
Raw Normal View History

2012-01-28 11:40:17 +01:00
= 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
2012-01-28 11:40:17 +01:00
%hr
%pre= @key.key
.right
= link_to 'Remove', project_deploy_key_path(@key.project, @key), confirm: 'Are you sure?', method: :delete, class: "danger btn delete-key"