gitlab-org--gitlab-foss/app/views/ci/projects/index.html.haml

18 lines
426 B
Text
Raw Normal View History

2015-08-25 21:42:46 -04:00
- 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
2015-08-25 21:42:46 -04:00
: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'