gitlab-org--gitlab-foss/app/views/ci/projects/index.html.haml
2015-09-10 13:42:41 +03:00

17 lines
426 B
Text

- if current_user
= content_for :title do
%h3.project-title
Dashboard
.pull-right
= 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'