summaryrefslogtreecommitdiff
path: root/app/views/profiles/keys/show.html.haml
blob: fc292f23066d4d580a9e77a8b74444b1c0d9e1f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.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

.pull-right
  = link_to 'Remove', profile_key_path(@key), confirm: 'Are you sure?', method: :delete, class: "btn btn-remove delete-key"