summaryrefslogtreecommitdiff
path: root/app/views/keys/index.html.haml
blob: fd5a9dad2385dd1a888e7fda1141827b4573e6ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%h3.page_title
  SSH Keys
  = link_to "Add new", new_key_path, class: "btn right"

%hr
%p.slead
  SSH key allows you to establish a secure connection between your computer and GitLab


%table#keys-table
  %thead
    %tr
      %th Name
      %th Added
      %th
  - @keys.each do |key|
    = render(partial: 'show', locals: {key: key})
  - if @keys.blank?
    %tr
      %td{colspan: 3}
        %h3.nothing_here_message There are no SSH keys with access to your account.