diff options
author | randx <dmitriy.zaporozhets@gmail.com> | 2012-07-21 10:27:09 +0300 |
---|---|---|
committer | randx <dmitriy.zaporozhets@gmail.com> | 2012-07-21 10:27:09 +0300 |
commit | 4261acda90ff4c61326d80cba026ae76e8551f8f (patch) | |
tree | 36c0168a123c445f8b597d57f270ede2eadd55ac | |
parent | a69fc5dd23bd502fd36892a80eec21a4c53891f8 (diff) | |
download | gitlab-ce-4261acda90ff4c61326d80cba026ae76e8551f8f.tar.gz |
move SSH keys tab closer to begining
-rw-r--r-- | app/views/layouts/profile.html.haml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/views/layouts/profile.html.haml b/app/views/layouts/profile.html.haml index dfe48d68240..957a68bf482 100644 --- a/app/views/layouts/profile.html.haml +++ b/app/views/layouts/profile.html.haml @@ -12,16 +12,17 @@ %li{:class => tab_class(:password)} = link_to "Password", profile_password_path + %li{:class => tab_class(:ssh_keys)} + = link_to keys_path do + SSH Keys + %span.count= current_user.keys.count + %li{:class => tab_class(:token)} = link_to "Token", profile_token_path %li{:class => tab_class(:design)} = link_to "Design", profile_design_path - %li{:class => tab_class(:ssh_keys)} - = link_to keys_path do - SSH Keys - %span.count= current_user.keys.count .content = yield |