OSDN Git Service

a0a315a5b75647712b3bb875d7d55b13a47c06bf
[wvm/gitlab.git] / app / views / profiles / keys / show.html.haml
1 .row
2   .span4
3     .ui-box
4       .title
5         SSH Key
6       %ul.well-list
7         %li
8           %span.light Title:
9           %strong= @key.title
10         %li
11           %span.light Created on:
12           %strong= @key.created_at.stamp("Aug 21, 2011")
13
14   .span8
15     %p
16       %span.light Fingerprint:
17       %strong= @key.fingerprint
18     %pre.well-pre
19       = @key.key
20
21 .pull-right
22   = link_to 'Remove', profile_key_path(@key), data: {confirm: 'Are you sure?'}, method: :delete, class: "btn btn-remove delete-key"