summaryrefslogtreecommitdiff
path: root/app/views/profiles/keys/_key_details.html.haml
blob: 0ef01dec4932dc8682b9003ac106cedf6c03957c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
- is_admin = defined?(admin) ? true : false
.row.prepend-top-default
  .col-md-4
    .card
      .card-header
        = _('SSH Key')
      %ul.content-list
        %li
          %span.light= _('Title:')
          %strong= @key.title
        %li
          %span.light= _('Created on:')
          %strong= @key.created_at.to_s(:medium)
        %li
          %span.light= _('Last used on:')
          %strong= @key.last_used_at.try(:to_s, :medium) || 'N/A'

  .col-md-8
    = form_errors(@key, type: 'key') unless @key.valid?
    %p
      %span.light= _('Fingerprint:')
      %code.key-fingerprint= @key.fingerprint
    %pre.well-pre
      = @key.key
  .col-md-12
    .float-right
      - if @key.can_delete?
        = link_to _('Remove'), path_to_key(@key, is_admin), data: {confirm: _('Are you sure?')}, method: :delete, class: "btn btn-remove delete-key qa-delete-key-button"