gitlab-org--gitlab-foss/app/views/admin/builds/index.html.haml

51 lines
1.5 KiB
Plaintext
Raw Normal View History

2016-06-15 13:07:06 +00:00
- @no_container = true
= render "admin/dashboard/head"
2016-06-30 13:01:26 +00:00
%div{ class: container_class }
2016-06-15 13:07:06 +00:00
.top-area
%ul.nav-links
%li{class: ('active' if @scope.nil?)}
= link_to admin_builds_path do
All
%span.badge.js-totalbuilds-count= @all_builds.count(:id)
%li{class: ('active' if @scope == 'running')}
= link_to admin_builds_path(scope: :running) do
Running
%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
Finished
%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', 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-07-11 18:57:12 +00:00
%ul.content-list.builds-content-list
2016-06-15 13:07:06 +00:00
- if @builds.blank?
%li
.nothing-here-block No builds to show
- else
.table-holder
%table.table.builds
%thead
%tr
%th Status
%th Commit
2016-07-11 18:57:12 +00:00
%th Project
2016-06-15 13:07:06 +00:00
%th Runner
%th Name
2016-07-11 18:57:12 +00:00
%th
2016-06-15 13:07:06 +00:00
%th
- @builds.each do |build|
= render "admin/builds/build", build: build
= paginate @builds, theme: 'gitlab'