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: f1bdd52b3996e3e4c07cd120ee36425ad3f2f258 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- breadcrumb_title "Jobs"

.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