19 lines
639 B
Text
19 lines
639 B
Text
|
- if @timeout
|
||
|
= render partial: "search/results/timeout"
|
||
|
- elsif @search_objects.to_a.empty?
|
||
|
= render partial: "search/results/empty"
|
||
|
- else
|
||
|
- 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, pipeline_status: false
|
||
|
- else
|
||
|
= render_if_exists partial: "search/results/#{@scope.singularize}", collection: @search_objects
|
||
|
|
||
|
- if @scope != 'projects'
|
||
|
= paginate_collection(@search_objects)
|