summaryrefslogtreecommitdiff
path: root/app/views/search/_results.html.haml
blob: dc8243c2fc924b77106883461d676c7e4ab19d0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- if @search_results.empty?
  = render partial: "search/results/empty"
- else
  .gray-content-block
    在
    %code
      = @search_term
    - unless @show_snippets
      - if @project
        项目 #{link_to @project.name_with_namespace, [@project.namespace.becomes(Namespace), @project]}
      - elsif @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'

:javascript
  $(".search-results .term").highlight("#{escape_javascript(params[:search])}");