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

56 lines
1.7 KiB
Text
Raw Normal View History

2015-10-24 18:46:33 +05:30
- page_title "Builds"
2015-11-26 14:37:03 +05:30
= render "header_title"
2015-10-24 18:46:33 +05:30
.project-issuable-filter
.controls
2015-12-23 02:04:40 +05:30
- if can?(current_user, :manage_builds, @project)
2015-10-24 18:46:33 +05:30
.pull-left.hidden-xs
- if @all_builds.running_or_pending.any?
2015-12-23 02:04:40 +05:30
= link_to 'Cancel running', cancel_all_namespace_project_builds_path(@project.namespace, @project), data: { confirm: 'Are you sure?' }, class: 'btn btn-danger', method: :post
2015-10-24 18:46:33 +05:30
%ul.center-top-menu
%li{class: ('active' if @scope.nil?)}
= link_to project_builds_path(@project) do
All
%span.badge.js-totalbuilds-count
= number_with_delimiter(@all_builds.count(:id))
%li{class: ('active' if @scope == 'running')}
= link_to project_builds_path(@project, scope: :running) do
2015-10-24 18:46:33 +05:30
Running
2015-12-23 02:04:40 +05:30
%span.badge.js-running-count
= number_with_delimiter(@all_builds.running_or_pending.count(:id))
2015-10-24 18:46:33 +05:30
%li{class: ('active' if @scope == 'finished')}
= link_to project_builds_path(@project, scope: :finished) do
Finished
2015-12-23 02:04:40 +05:30
%span.badge.js-running-count
= number_with_delimiter(@all_builds.finished.count(:id))
2015-10-24 18:46:33 +05:30
.gray-content-block
2015-11-26 14:37:03 +05:30
#{(@scope || 'running').capitalize} builds from this project
2015-10-24 18:46:33 +05:30
%ul.content-list
- if @builds.blank?
%li
.nothing-here-block No builds to show
- else
2015-11-26 14:37:03 +05:30
.table-holder
%table.table.builds
%thead
%tr
%th Status
%th Build ID
2015-11-26 14:37:03 +05:30
%th Commit
%th Ref
%th Stage
%th Name
%th Duration
%th Finished at
%th
- @builds.each do |build|
= render 'projects/commit_statuses/commit_status', commit_status: build, commit_sha: true, stage: true, allow_retry: true
= paginate @builds, theme: 'gitlab'