gitlab-org--gitlab-foss/app/views/search/_results.html.haml

22 lines
706 B
Plaintext
Raw Normal View History

- if @objects.empty?
= render partial: "search/results/empty"
- else
.gray-content-block
2016-04-15 16:00:53 +00:00
= search_entries_info @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
.search-results
- if @scope == 'projects'
.term
= render 'shared/projects/list', projects: @objects
- else
= render partial: "search/results/#{@scope.singularize}", collection: @objects
- if @scope != 'projects'
= paginate @objects, theme: 'gitlab'