gitlab-org--gitlab-foss/app/views/search/_results.html.haml
2016-04-26 09:03:04 +01:00

21 lines
691 B
Text

- if @search_results.empty?
= render partial: "search/results/empty"
- else
.gray-content-block
= search_entries_info @objects
- 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'