debian-mirror-gitlab/app/views/search/_results.html.haml

39 lines
1.8 KiB
Text
Raw Normal View History

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'
2019-12-26 22:10:19 +05:30
= render_if_exists 'search/form_revert_to_basic'
2015-09-11 14:41:01 +05:30
- else
2019-10-12 21:52:04 +05:30
.row-content-block.d-md-flex.text-left.align-items-center
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
2020-10-24 23:57:45 +05:30
- link_to_project = link_to(@project.full_name, @project, class: 'ml-md-1')
2019-10-12 21:52:04 +05:30
- if @scope == 'blobs'
- repository_ref = params[:repository_ref].to_s.presence || @project.default_branch
= s_("SearchCodeResults|in")
.mx-md-1
= render partial: "shared/ref_switcher", locals: { ref: repository_ref, form_path: request.fullpath, field_name: 'repository_ref' }
= s_('SearchCodeResults|of %{link_to_project}').html_safe % { link_to_project: link_to_project }
- else
= _("in project %{link_to_project}").html_safe % { link_to_project: link_to_project }
2015-09-11 14:41:01 +05:30
- elsif @group
2019-10-12 21:52:04 +05:30
- link_to_group = link_to(@group.name, @group, class: 'ml-md-1')
2019-03-02 22:35:43 +05:30
= _("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'
2019-10-12 21:52:04 +05:30
2020-10-24 23:57:45 +05:30
.results.gl-mt-3
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
2020-03-13 15:44:24 +05:30
= render partial: "search/results/#{@scope.singularize}", collection: @search_objects
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)