summaryrefslogtreecommitdiff
path: root/app/views/search/_category.html.haml
blob: 5afb95ac4302538a87f2f241976b22b54b661367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
%ul.nav-links.search-filter
  - if @project
    %li{ class: active_when(@scope == 'blobs') }
      = link_to search_filter_path(scope: 'blobs') do
        Code
        %span.badge
          = @search_results.blobs_count
    %li{ class: active_when(@scope == 'issues') }
      = link_to search_filter_path(scope: 'issues') do
        Issues
        %span.badge
          = @search_results.issues_count
    %li{ class: active_when(@scope == 'merge_requests') }
      = link_to search_filter_path(scope: 'merge_requests') do
        Merge requests
        %span.badge
          = @search_results.merge_requests_count
    %li{ class: active_when(@scope == 'milestones') }
      = link_to search_filter_path(scope: 'milestones') do
        Milestones
        %span.badge
          = @search_results.milestones_count
    %li{ class: active_when(@scope == 'notes') }
      = link_to search_filter_path(scope: 'notes') do
        Comments
        %span.badge
          = @search_results.notes_count
    %li{ class: active_when(@scope == 'wiki_blobs') }
      = link_to search_filter_path(scope: 'wiki_blobs') do
        Wiki
        %span.badge
          = @search_results.wiki_blobs_count
    %li{ class: active_when(@scope == 'commits') }
      = link_to search_filter_path(scope: 'commits') do
        Commits
        %span.badge
          = @search_results.commits_count

  - elsif @show_snippets
    %li{ class: active_when(@scope == 'snippet_blobs') }
      = link_to search_filter_path(scope: 'snippet_blobs', snippets: true, group_id: nil, project_id: nil) do
        Snippet Contents
        %span.badge
          = @search_results.snippet_blobs_count
    %li{ class: active_when(@scope == 'snippet_titles') }
      = link_to search_filter_path(scope: 'snippet_titles', snippets: true, group_id: nil, project_id: nil) do
        Titles and Filenames
        %span.badge
          = @search_results.snippet_titles_count

  - else
    %li{ class: active_when(@scope == 'projects') }
      = link_to search_filter_path(scope: 'projects') do
        Projects
        %span.badge
          = @search_results.projects_count
    %li{ class: active_when(@scope == 'issues') }
      = link_to search_filter_path(scope: 'issues') do
        Issues
        %span.badge
          = @search_results.issues_count
    %li{ class: active_when(@scope == 'merge_requests') }
      = link_to search_filter_path(scope: 'merge_requests') do
        Merge requests
        %span.badge
          = @search_results.merge_requests_count
    %li{ class: active_when(@scope == 'milestones') }
      = link_to search_filter_path(scope: 'milestones') do
        Milestones
        %span.badge
          = @search_results.milestones_count