summaryrefslogtreecommitdiff
path: root/app/views/ci/commits/show.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/ci/commits/show.html.haml')
-rw-r--r--app/views/ci/commits/show.html.haml26
1 files changed, 17 insertions, 9 deletions
diff --git a/app/views/ci/commits/show.html.haml b/app/views/ci/commits/show.html.haml
index 7217671fe95..7ebef8c5e06 100644
--- a/app/views/ci/commits/show.html.haml
+++ b/app/views/ci/commits/show.html.haml
@@ -4,14 +4,22 @@
.gray-content-block.middle-block
%pre.commit-message
- #{@commit.git_commit_message}
+ - if @commit.git_commit_message
+ #{@commit.git_commit_message}
+ - else
+ No commit message
.gray-content-block.second-block
.row
.col-sm-6
- %p
- %span.attr-name Commit:
- #{gitlab_commit_link(@project, @commit.sha)}
+ %p
+ %span.attr-name Commit:
+ #{gitlab_commit_link(@project, @commit.sha)}
+ %p
+ - if @commit.refs.present?
+ %span.attr-name Refs:
+ - @commit.refs.each do |ref|
+ #{gitlab_ref_link(@project, ref)}
.col-sm-6
- if @commit.git_author_name || @commit.git_author_email
%p
@@ -22,10 +30,10 @@
%span.attr-name Created at:
#{@commit.created_at.to_s(:short)}
-- if current_user && can?(current_user, :manage_builds, gl_project)
- .pull-right
- - if @commit.builds.running_or_pending.any?
- = link_to "Cancel", cancel_ci_project_commits_path(@project, @commit), class: 'btn btn-sm btn-danger'
+ - if current_user && can?(current_user, :manage_builds, gl_project)
+ - if @commit.builds.running_or_pending.any?
+ .pull-right
+ = link_to "Cancel", cancel_ci_project_commits_path(@project, @commit), class: 'btn btn-sm btn-danger'
- if @commit.yaml_errors.present?
@@ -41,7 +49,7 @@
- @commit.refs.each do |ref|
%h3
- Builds for #{ref}
+ Builds for #{gitlab_ref_link(@project, ref)}
- if @commit.duration_for_ref(ref) > 0
%small.pull-right
%i.fa.fa-time