summaryrefslogtreecommitdiff
path: root/app/views/ci/projects/index.html.haml
blob: 8de205d57aa9a33a9ff1bf18e56293178bc35a88 (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'