2019-02-15 15:39:39 +05:30
|
|
|
- if @search_objects.to_a.empty?
|
2015-09-11 14:41:01 +05:30
|
|
|
= render partial: "search/results/empty"
|
2019-09-04 21:01:54 +05:30
|
|
|
= render_if_exists 'shared/promotions/promote_advanced_search'
|
2015-09-11 14:41:01 +05:30
|
|
|
- else
|
2016-06-02 11:05:42 +05:30
|
|
|
.row-content-block
|
2018-03-17 18:26:18 +05:30
|
|
|
- unless @search_objects.is_a?(Kaminari::PaginatableWithoutCount)
|
|
|
|
= search_entries_info(@search_objects, @scope, @search_term)
|
2015-09-11 14:41:01 +05:30
|
|
|
- unless @show_snippets
|
|
|
|
- if @project
|
2019-03-02 22:35:43 +05:30
|
|
|
- link_to_project = link_to(@project.full_name, [@project.namespace.becomes(Namespace), @project])
|
|
|
|
= _("in project %{link_to_project}").html_safe % { link_to_project: link_to_project }
|
2015-09-11 14:41:01 +05:30
|
|
|
- elsif @group
|
2019-03-02 22:35:43 +05:30
|
|
|
- link_to_group = link_to(@group.name, @group)
|
|
|
|
= _("in group %{link_to_group}").html_safe % { link_to_group: link_to_group }
|
2019-09-04 21:01:54 +05:30
|
|
|
= render_if_exists 'shared/promotions/promote_advanced_search'
|
2015-09-11 14:41:01 +05:30
|
|
|
.results.prepend-top-10
|
2016-09-29 09:46:39 +05:30
|
|
|
- if @scope == 'commits'
|
2017-08-17 22:00:37 +05:30
|
|
|
%ul.content-list.commit-list
|
2016-09-29 09:46:39 +05:30
|
|
|
= render partial: "search/results/commit", collection: @search_objects
|
|
|
|
- else
|
|
|
|
.search-results
|
|
|
|
- if @scope == 'projects'
|
|
|
|
.term
|
2019-07-07 11:18:12 +05:30
|
|
|
= render 'shared/projects/list', projects: @search_objects, pipeline_status: false
|
2016-09-29 09:46:39 +05:30
|
|
|
- else
|
2019-07-07 11:18:12 +05:30
|
|
|
- locals = { projects: blob_projects(@search_objects) } if %w[blobs wiki_blobs].include?(@scope)
|
|
|
|
= render partial: "search/results/#{@scope.singularize}", collection: @search_objects, locals: locals
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
- if @scope != 'projects'
|
2018-03-17 18:26:18 +05:30
|
|
|
= paginate_collection(@search_objects)
|