2012-07-01 00:35:24 +03:00
|
|
|
%h3.page_title
|
2011-12-19 23:32:59 +02:00
|
|
|
SSH Keys
|
2013-01-30 16:40:43 +02:00
|
|
|
= link_to "Add new", new_key_path, class: "btn pull-right"
|
2012-06-04 01:37:27 +03:00
|
|
|
|
2012-07-01 00:35:24 +03:00
|
|
|
%hr
|
2012-09-07 10:42:41 +03:00
|
|
|
%p.slead
|
2012-09-06 10:50:47 +03:00
|
|
|
SSH key allows you to establish a secure connection between your computer and GitLab
|
2012-07-01 00:35:24 +03:00
|
|
|
|
2011-10-09 00:36:38 +03:00
|
|
|
|
2012-09-03 21:53:16 +03:00
|
|
|
%table#keys-table
|
2012-05-19 12:00:46 +03:00
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Name
|
|
|
|
%th Added
|
|
|
|
%th
|
2012-02-18 15:59:01 +02:00
|
|
|
- @keys.each do |key|
|
2012-08-10 18:07:50 -04:00
|
|
|
= render(partial: 'show', locals: {key: key})
|
2012-09-07 10:42:41 +03:00
|
|
|
- if @keys.blank?
|
2012-06-11 08:52:44 +03:00
|
|
|
%tr
|
2012-08-10 18:07:50 -04:00
|
|
|
%td{colspan: 3}
|
2012-11-21 08:14:05 +03:00
|
|
|
%p.nothing_here_message There are no SSH keys with access to your account.
|
2012-06-11 08:52:44 +03:00
|
|
|
|