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:
authorLin Jen-Shin <godfat@godfat.org>2016-08-11 14:04:45 +0300
committerLin Jen-Shin <godfat@godfat.org>2016-08-11 14:04:45 +0300
commit62d991c80f0b5716945912ebf2031f56da75a12b (patch)
tree5df112fefdfcaa888b35b72121c381c981c091d2 /app/views/projects/repositories
parentd84aa560331a646016880e4d2c5c0a3b3d4b32a6 (diff)
Show latest pipeline status if what provided artifacts aren't latest
Diffstat (limited to 'app/views/projects/repositories')
-rw-r--r--app/views/projects/repositories/_download_archive.html.haml5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/projects/repositories/_download_archive.html.haml b/app/views/projects/repositories/_download_archive.html.haml
index 0ef9ad5f789..c9a0b74e47b 100644
--- a/app/views/projects/repositories/_download_archive.html.haml
+++ b/app/views/projects/repositories/_download_archive.html.haml
@@ -31,7 +31,10 @@
- if artifacts.any?
%li.dropdown-header Artifacts
- unless pipeline.latest?
- = " (not latest, but #{link_to(pipeline.short_sha, namespace_project_pipeline_path(@project.namespace, @project, pipeline))})"
+ - latest_pipeline = @project.pipeline_for(ref)
+ %li
+ %span= latest_pipeline.status.humanize
+ %li.dropdown-header Previous Artifacts
- artifacts.each do |job|
%li
= link_to search_namespace_project_artifacts_path(@project.namespace, @project, ref, 'download', job: job.name), rel: 'nofollow' do