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