gitlabhq/app/views/deploy_keys/show.html.haml
2012-01-28 12:40:17 +02:00

8 lines
232 B
Plaintext

= 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"
.clear