diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-10-18 14:17:15 +0200 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-10-18 14:17:15 +0200 |
commit | 44df201280ce67ac704c31e7cc24d5c6b34cff90 (patch) | |
tree | 2dcb1b81919fa6cd98485ec02b51ebedce92d3a5 /app/views/dashboard/snippets | |
parent | 946f00ed7f2b487273bb5dabdb5997da60f1dc92 (diff) | |
download | gitlab-ce-44df201280ce67ac704c31e7cc24d5c6b34cff90.tar.gz |
Restore dashboard snippets tabs.
Diffstat (limited to 'app/views/dashboard/snippets')
-rw-r--r-- | app/views/dashboard/snippets/index.html.haml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/views/dashboard/snippets/index.html.haml b/app/views/dashboard/snippets/index.html.haml index d92149dcc70..7ac3a12baf9 100644 --- a/app/views/dashboard/snippets/index.html.haml +++ b/app/views/dashboard/snippets/index.html.haml @@ -12,5 +12,27 @@ .oneline Share code pastes with others out of git repository +%ul.center-top-menu.no-top.no-bottom.snippet-scope-menu + = nav_tab :scope, nil do + = link_to dashboard_snippets_path do + All + %span.badge + = current_user.snippets.count + = nav_tab :scope, 'are_private' do + = link_to dashboard_snippets_path(scope: 'are_private') do + Private + %span.badge + = current_user.snippets.are_private.count + = nav_tab :scope, 'are_internal' do + = link_to dashboard_snippets_path(scope: 'are_internal') do + Internal + %span.badge + = current_user.snippets.are_internal.count + = nav_tab :scope, 'are_public' do + = link_to dashboard_snippets_path(scope: 'are_public') do + Public + %span.badge + = current_user.snippets.are_public.count + = render 'snippets/snippets' |