gitlab-org--gitlab-foss/app/views/profiles/keys/show.html.haml

20 lines
434 B
Plaintext
Raw Normal View History

2013-06-24 16:25:10 +00:00
.row
.span4
.ui-box
%h5.title
SSH Key
%ul.well-list
%li
%span.light Title:
%strong= @key.title
%li
%span.light Created at:
%strong= @key.created_at.stamp("Aug 21, 2011")
.span8
%pre.well-pre
= @key.key
2013-01-30 14:40:43 +00:00
.pull-right
= link_to 'Remove', profile_key_path(@key), confirm: 'Are you sure?', method: :delete, class: "btn btn-remove delete-key"