2012-06-04 00:37:27 +02:00
|
|
|
%h3
|
2011-12-19 22:32:59 +01:00
|
|
|
SSH Keys
|
2012-01-29 22:59:12 +01:00
|
|
|
= link_to "Add new", new_key_path, :class => "btn small right"
|
2012-06-04 00:37:27 +02:00
|
|
|
|
2012-03-10 22:41:05 +01:00
|
|
|
%br
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-05-19 11:00:46 +02:00
|
|
|
%table#keys-table.admin-table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Name
|
|
|
|
%th Added
|
|
|
|
%th
|
2012-02-18 14:59:01 +01:00
|
|
|
- @keys.each do |key|
|
|
|
|
= render(:partial => 'show', :locals => {:key => key})
|
2012-06-11 07:52:44 +02:00
|
|
|
- if @keys.blank?
|
|
|
|
%tr
|
|
|
|
%td{:colspan => 3}
|
|
|
|
%h3.nothing_here_message There are no SSH keys with access to your account.
|
|
|
|
|