summaryrefslogtreecommitdiff
path: root/app/views/ci/projects/index.html.haml
blob: 60ab29a66cf1b53d085316b0dd6a08e8d29bab13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- if current_user
  .gray-content-block.top-block
    = render "search"
  .projects
    %p.fetch-status.light
      %i.fa.fa-refresh.fa-spin
  :coffeescript
    $.get '#{gitlab_ci_projects_path}', (data) ->
      $(".projects").html data.html
    CiPager.init "#{gitlab_ci_projects_path}", #{Ci::ProjectsController::PROJECTS_BATCH}, false

- else
  = render 'public'