BigW Consortium Gitlab

_results.html.haml 691 Bytes
Newer Older
1 2 3
- if @search_results.empty?
  = render partial: "search/results/empty"
- else
4
  .gray-content-block
5
    = search_entries_info @objects
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 16 17 18
      - if @scope == 'projects'
        .term
          = render 'shared/projects/list', projects: @objects
      - else
        = render partial: "search/results/#{@scope.singularize}", collection: @objects
19 20 21

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