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

29 lines
1.1 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"
- 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 }
2014-09-02 18:07:02 +05:30
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-05-30 16:15:17 +05:30
= render 'shared/projects/list', projects: @search_objects
2016-09-29 09:46:39 +05:30
- else
2019-05-30 16:15:17 +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)