BigW Consortium Gitlab

index.html.haml 470 Bytes
Newer Older
randx committed
1
%h3.page_title
2
  SSH Keys
3
  = link_to "Add new", new_key_path, class: "btn right"
4

randx committed
5
%hr
6
%p.slead
7
  SSH key allows you to establish a secure connection between your computer and GitLab
randx committed
8

gitlabhq committed
9

randx committed
10
%table#keys-table
11 12 13 14 15
  %thead
    %tr
      %th Name
      %th Added
      %th
16
  - @keys.each do |key|
17
    = render(partial: 'show', locals: {key: key})
18
  - if @keys.blank?
19
    %tr
20
      %td{colspan: 3}
21 22
        %h3.nothing_here_message There are no SSH keys with access to your account.