debian-mirror-gitlab/app/views/admin/builds/index.html.haml

19 lines
666 B
Text
Raw Normal View History

- @no_container = true
= render "admin/dashboard/head"
2016-08-24 12:49:21 +05:30
%div{ class: container_class }
.top-area
2016-09-29 09:46:39 +05:30
- build_path_proc = ->(scope) { admin_builds_path(scope: scope) }
= render "shared/builds/tabs", build_path_proc: build_path_proc, all_builds: @all_builds, scope: @scope
.nav-controls
- if @all_builds.running_or_pending.any?
= link_to 'Cancel all', cancel_all_admin_builds_path, data: { confirm: 'Are you sure?' }, class: 'btn btn-danger', method: :post
.row-content-block.second-block
#{(@scope || 'all').capitalize} builds
2016-08-24 12:49:21 +05:30
%ul.content-list.builds-content-list
2016-09-29 09:46:39 +05:30
= render "projects/builds/table", builds: @builds, admin: true