gitlabhq/app/views/keys/index.html.haml

23 lines
474 B
Plaintext
Raw Normal View History

%h3.page_title
SSH Keys
2013-01-30 15:40:43 +01:00
= link_to "Add new", new_key_path, class: "btn pull-right"
%hr
%p.slead
SSH key allows you to establish a secure connection between your computer and GitLab
2011-10-08 23:36:38 +02:00
2012-09-03 20:53:16 +02:00
%table#keys-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})
- if @keys.blank?
%tr
%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.