gitlabhq/app/views/keys/index.html.haml
randx 6a58deb536 UI changes:
* .page_title  class added. Used for better page headers
* improved help page
* added back links for help pages
* show app version & revision on help page

Backend changes:
* Gitab::Version && Gitlab::Revision constants
2012-07-01 00:35:24 +03:00

23 lines
505 B
Plaintext

%h3.page_title
SSH Keys
= link_to "Add new", new_key_path, :class => "btn small right"
%hr
%p.slead
SSH key allows you to establish a secure connection between your computer and Gitlab
%table#keys-table.admin-table
%thead
%tr
%th Name
%th Added
%th
- @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.