BigW Consortium Gitlab

_results.html.haml 897 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
    - 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
Phil Hughes committed
13 14 15 16 17 18 19 20 21 22
    - if @scope == 'commits'
      %ul.list-unstyled
        = render partial: "search/results/commit", collection: @search_objects
    - else
      .search-results
        - if @scope == 'projects'
          .term
            = render 'shared/projects/list', projects: @search_objects
        - else
          = render partial: "search/results/#{@scope.singularize}", collection: @search_objects
23 24

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