summaryrefslogtreecommitdiff
path: root/app/views/search/_category.html.haml
blob: 481451edb23ce0904bbb70b6e15fd2612faae374 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
%ul.nav.nav-tabs.search-filter
  - if @project
    %li{class: ("active" if @scope == 'blobs')}
      = link_to search_filter_path(scope: 'blobs') do
        = icon('code fw')
        %span
          Code
          %span.badge
            = @search_results.blobs_count
    %li{class: ("active" if @scope == 'issues')}
      = link_to search_filter_path(scope: 'issues') do
        = icon('exclamation-circle fw')
        %span
          Issues
          %span.badge
            = @search_results.issues_count
    %li{class: ("active" if @scope == 'merge_requests')}
      = link_to search_filter_path(scope: 'merge_requests') do
        = icon('tasks fw')
        %span
          Merge requests
          %span.badge
            = @search_results.merge_requests_count
    %li{class: ("active" if @scope == 'milestones')}
      = link_to search_filter_path(scope: 'milestones') do
        = icon('clock-o fw')
        %span
          Milestones
          %span.badge
            = @search_results.milestones_count
    %li{class: ("active" if @scope == 'notes')}
      = link_to search_filter_path(scope: 'notes') do
        = icon('comments fw')
        %span
          Comments
          %span.badge
            = @search_results.notes_count
    %li{class: ("active" if @scope == 'wiki_blobs')}
      = link_to search_filter_path(scope: 'wiki_blobs') do
        = icon('book fw')
        %span
          Wiki
          %span.badge
            = @search_results.wiki_blobs_count
    %li{class: ("active" if @scope == 'commits')}
      = link_to search_filter_path(scope: 'commits') do
        = icon('history fw')
        %span
          Commits
          %span.badge
            = @search_results.commits_count

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

  - else
    %li{class: ("active" if @scope == 'projects')}
      = link_to search_filter_path(scope: 'projects') do
        = icon('bookmark fw')
        %span
          Projects
          %span.badge
            = @search_results.projects_count
    %li{class: ("active" if @scope == 'issues')}
      = link_to search_filter_path(scope: 'issues') do
        = icon('exclamation-circle fw')
        %span
          Issues
          %span.badge
            = @search_results.issues_count
    %li{class: ("active" if @scope == 'merge_requests')}
      = link_to search_filter_path(scope: 'merge_requests') do
        = icon('tasks fw')
        %span
          Merge requests
          %span.badge
            = @search_results.merge_requests_count
    %li{class: ("active" if @scope == 'milestones')}
      = link_to search_filter_path(scope: 'milestones') do
        = icon('clock-o fw')
        %span
          Milestones
          %span.badge
            = @search_results.milestones_count