gitlab-org--gitlab-foss/app/views/keys/index.html.haml

20 lines
396 B
Plaintext
Raw Normal View History

%h3
SSH Keys
= link_to "Add new", new_key_path, :class => "btn small right"
%br
2011-10-08 21:36:38 +00:00
%table#keys-table.admin-table
%thead
%tr
%th Name
%th Added
%th
2012-02-18 13:59:01 +00:00
- @keys.each do |key|
= render(:partial => 'show', :locals => {:key => key})
- if @keys.blank?
%tr
%td{:colspan => 3}
%h3.nothing_here_message There are no SSH keys with access to your account.