BigW Consortium Gitlab

_results.html.haml 742 Bytes
Newer Older
1
- if @search_objects.empty?
2 3
  = render partial: "search/results/empty"
- else
4
  .row-content-block
5
    = search_entries_info(@search_objects, @scope, @search_term)
6 7 8 9 10 11 12 13
    - 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
14 15
      - if @scope == 'projects'
        .term
16
          = render 'shared/projects/list', projects: @search_objects
17
      - else
18
        = render partial: "search/results/#{@scope.singularize}", collection: @search_objects
19 20

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