diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-05-19 12:00:46 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-05-19 12:25:56 +0300 |
commit | 1e4d15b406de131d1260f1477d0077c6f5e93ddd (patch) | |
tree | b9fab0ca1afe6cb11332b43b9e841687639c9e1f /app/views/layouts/profile.html.haml | |
parent | eb25bfe2b2233761115efa31577d70e9954f66d1 (diff) | |
download | gitlab-ce-1e4d15b406de131d1260f1477d0077c6f5e93ddd.tar.gz |
Password & token split up, icon to button for top panel
Diffstat (limited to 'app/views/layouts/profile.html.haml')
-rw-r--r-- | app/views/layouts/profile.html.haml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/layouts/profile.html.haml b/app/views/layouts/profile.html.haml index 571612e0bb7..93f7c1827fb 100644 --- a/app/views/layouts/profile.html.haml +++ b/app/views/layouts/profile.html.haml @@ -7,7 +7,8 @@ .container %nav.main_menu = link_to "Profile", profile_path, :class => "home #{current_page?(:controller => "profile", :action => :show) ? "current" : nil}" - = link_to "Password & token", profile_password_path, :class => current_page?(:controller => "profile", :action => :password) ? "current" : nil + = link_to "Password", profile_password_path, :class => current_page?(:controller => "profile", :action => :password) ? "current" : nil + = link_to "Token", profile_token_path, :class => current_page?(:controller => "profile", :action => :token) ? "current" : nil = link_to "Design", profile_design_path, :class => current_page?(:controller => "profile", :action => :design) ? "current" : nil = link_to keys_path, :class => controller.controller_name == "keys" ? "current" : nil do SSH Keys |