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

_results.html.haml « search « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 252c37532e16370d1f4cd06145947ff2627c5772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- if @search_objects.empty?
  = render partial: "search/results/empty"
- else
  .row-content-block
    = search_entries_info(@search_objects, @scope, @search_term)
    - unless @show_snippets
      - if @project
        in project #{link_to @project.name_with_namespace, [@project.namespace.becomes(Namespace), @project]}
      - elsif @group
        in group #{link_to @group.name, @group}

  .results.prepend-top-10
    .search-results
      - if @scope == 'projects'
        .term
          = render 'shared/projects/list', projects: @search_objects
      - else
        = render partial: "search/results/#{@scope.singularize}", collection: @search_objects

    - if @scope != 'projects'
      = paginate(@search_objects, theme: 'gitlab')