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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-05-24 05:23:32 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-05-24 05:23:32 +0300
commit2f252d8f0ee0303db25a0a329f2325bec2ea3979 (patch)
tree2e2c7d70748bc17475f585c0f1406d623430891e /app/views/projects/commit
parent8d0332368fba65f167f2109daf8a2184d781082b (diff)
parent16ca3ee636a50c81674309bb95e067d3faf56bb6 (diff)
Merge branch 'master' into improve-pipeline-design
Diffstat (limited to 'app/views/projects/commit')
-rw-r--r--app/views/projects/commit/_ci_commit.html.haml11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/views/projects/commit/_ci_commit.html.haml b/app/views/projects/commit/_ci_commit.html.haml
index 8228c067be0..ce5c550b441 100644
--- a/app/views/projects/commit/_ci_commit.html.haml
+++ b/app/views/projects/commit/_ci_commit.html.haml
@@ -37,5 +37,16 @@
.table-holder
%table.table.builds
+ %thead
+ %tr
+ %th Status
+ %th Build ID
+ %th Name
+ %th Tags
+ %th Duration
+ %th Finished at
+ - if @project.build_coverage_enabled?
+ %th Coverage
+ %th
- ci_commit.statuses.stages.each do |stage|
= render 'projects/commit/ci_stage', stage: stage, statuses: ci_commit.statuses.where(stage: stage)