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