summaryrefslogtreecommitdiff
path: root/app/views/admin/builds/index.html.haml
blob: f2e546d6193c52b8678d6d7086299fb437cb5670 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.top-area
  %ul.nav-links
    %li{class: ('active' if @scope.nil?)}
      = link_to admin_builds_path do
        全部
        %span.badge.js-totalbuilds-count= @all_builds.count(:id)

    %li{class: ('active' if @scope == 'running')}
      = link_to admin_builds_path(scope: :running) do
        正在运行
        %span.badge.js-running-count= number_with_delimiter(@all_builds.running_or_pending.count(:id))

    %li{class: ('active' if @scope == 'finished')}
      = link_to admin_builds_path(scope: :finished) do
        已结束
        %span.badge.js-running-count= number_with_delimiter(@all_builds.finished.count(:id))

  .nav-controls
    - if @all_builds.running_or_pending.any?
      = link_to '取消所有', cancel_all_admin_builds_path, data: { confirm: '确定要继续么?' }, class: 'btn btn-danger', method: :post

.gray-content-block.second-block
  #{(@scope || 'running').capitalize} 的构建

%ul.content-list
  - if @builds.blank?
    %li
      .nothing-here-block 没有构建显示
  - else
    .table-holder
      %table.table.builds
        %thead
          %tr
            %th 状态
            %th 构建 ID
            %th 项目
            %th 提交
            %th 参考
            %th Runner
            %th 名称
            %th 运行时间
            %th 结束时间
            %th

        - @builds.each do |build|
          = render "admin/builds/build", build: build

    = paginate @builds, theme: 'gitlab'