summaryrefslogtreecommitdiff
path: root/app/views/dashboard/snippets/index.html.haml
blob: 05214346496588b4760646f294db85f5c73fe018 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- @hide_top_links = true
- page_title    "Snippets"
- header_title  "Snippets", dashboard_snippets_path
- button_path = new_snippet_path if can?(current_user, :create_snippet)

= render 'dashboard/snippets_head'
- if current_user.snippets.exists?
  = render partial: 'snippets/snippets_scope_menu', locals: { include_private: true, counts: @snippet_counts }

- if current_user.snippets.exists?
  = render partial: 'shared/snippets/list', locals: { link_project: true }
- else
  = render 'shared/empty_states/snippets', button_path: button_path