gitlab-org--gitlab-foss/app/views/profiles/keys/show.html.haml
David Pursehouse 03dec79c74 Fix some more instances of "Created at"
"Created on" should be used when the timestamp is only a date.
2013-10-23 10:15:08 +09:00

22 lines
501 B
Text

.row
.span4
.ui-box
.title
SSH Key
%ul.well-list
%li
%span.light Title:
%strong= @key.title
%li
%span.light Created on:
%strong= @key.created_at.stamp("Aug 21, 2011")
.span8
%p
%span.light Fingerprint:
%strong= @key.fingerprint
%pre.well-pre
= @key.key
.pull-right
= link_to 'Remove', profile_key_path(@key), confirm: 'Are you sure?', method: :delete, class: "btn btn-remove delete-key"