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

8 lines
223 B
Plaintext
Raw Normal View History

2012-01-28 11:40:17 +01:00
= render "repositories/head"
%h3= @key.title
%hr
%pre= @key.key
.actions
= link_to 'Remove', project_deploy_key_path(@key.project, @key), confirm: 'Are you sure?', method: :delete, class: "danger btn delete-key"
2012-01-28 11:40:17 +01:00
.clear