Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_global_filter.html.haml « search « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 442bd84f9308dbd83d864a2715a197d4f0102eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%ul.nav.nav-pills.nav-stacked.search-filter
  %li{class: ("active" if @scope == 'projects')}
    = link_to search_filter_path(scope: 'projects') do
      Projects
      .pull-right
        = @search_results.projects_count
  %li{class: ("active" if @scope == 'issues')}
    = link_to search_filter_path(scope: 'issues') do
      Issues
      .pull-right
        = @search_results.issues_count
  %li{class: ("active" if @scope == 'merge_requests')}
    = link_to search_filter_path(scope: 'merge_requests') do
      Merge requests
      .pull-right
        = @search_results.merge_requests_count