591f0e2258
center spinner show placeholder text on new MR page remove redundant `display: block` from li - they default to `list-style` already
25 lines
908 B
Text
25 lines
908 B
Text
- 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
|
|
- if @scope == 'commits'
|
|
%ul.content-list.commit-list
|
|
= 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
|
|
|
|
- if @scope != 'projects'
|
|
= paginate(@search_objects, theme: 'gitlab')
|