summaryrefslogtreecommitdiff
path: root/app/views/search/_results.html.haml
blob: 204f5a36f85e126dba570ee1de8b3c1f8dea1f03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- if @objects.empty?
  = render partial: "search/results/empty"
- else
  .gray-content-block
    = search_entries_info @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: @objects
      - else
        = render partial: "search/results/#{@scope.singularize}", collection: @objects

    - if @scope != 'projects'
      = paginate @objects, theme: 'gitlab'