summaryrefslogtreecommitdiff
path: root/app/views/profiles/keys/show.html.haml
blob: b736ab17087a9712cb70ee7be7c7114f27f7cd11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.row
  .span4
    .ui-box
      .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
    %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"