summaryrefslogtreecommitdiff
path: root/app/views/ci/projects/index.html.haml
blob: 2b618d61f79c9f8d35d6931892b88174095727da (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
28
29
30
- if current_user
  - if @offset > 0
    = render @projects
  - else
    .gray-content-block.top-block
      = render "search"
    .projects
      .gray-content-block.clearfix.light.second-block
        .pull-left.fetch-status
          - if params[:search].present?
            by keyword: "#{params[:search]}",
          #{@total_count} projects

      .wide-table-holder
        %table.table.projects-table.content-list
          %thead
            %tr
              %th Project Name
              %th Last commit
              %th Access
              %th Commits

          = render @projects
  %p.text-center.hide.loading
    %i.fa.fa-refresh.fa-spin
  :coffeescript
    CiPager.init "#{ci_projects_path}", #{Ci::ProjectsController::PROJECTS_BATCH}, false

- else
  = render 'public'