Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « jobs « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e3e2f7a47580211ff509fc9feadb2e2c8a0294e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- breadcrumb_title "Jobs"
- @no_container = true

%div{ class: container_class }

  .top-area.scrolling-tabs-container.inner-page-scroll-tabs
    - build_path_proc = ->(scope) { admin_jobs_path(scope: scope) }
    = render "shared/builds/tabs", build_path_proc: build_path_proc, all_builds: @all_builds, scope: @scope

    - if @all_builds.running_or_pending.any?
      #stop-jobs-modal
      .nav-controls
        %button#stop-jobs-button.btn.btn-danger{ data: { toggle: 'modal',
          target: '#stop-jobs-modal',
          url: cancel_all_admin_jobs_path } }
          = s_('AdminArea|Stop all jobs')

  .row-content-block.second-block
    #{(@scope || 'all').capitalize} jobs

  %ul.content-list.builds-content-list.admin-builds-table
    = render "projects/jobs/table", builds: @builds, admin: true