Commit dc67554c authored by Grzegorz Bizon's avatar Grzegorz Bizon

Improve detailed status badge partial

parent 23f02681
......@@ -91,7 +91,7 @@
%strong ##{build.id}
%td.status
= render "ci/status/icon_with_description", subject: build
= render 'ci/status/badge', status: build.detailed_status(current_user)
%td.status
- if project
......
- if status.has_details?
= link_to status.details_path, class: "ci-status ci-#{status}" do
= custom_icon(status.icon)
= status.text
- else
%span{ class: "ci-status ci-#{status}" }
= custom_icon(status.icon)
= detailed_status.text
- detailed_status = subject.detailed_status(current_user)
- details_path = detailed_status.details_path if detailed_status.has_details?
- klass = "ci-status ci-#{detailed_status}"
- if details_path
= link_to details_path, class: klass do
= custom_icon(detailed_status.icon)
= detailed_status.text
- else
%span{ class: klass }
= custom_icon(detailed_status.icon)
= detailed_status.text
.content-block.build-header
.header-content
= render "ci/status/icon_with_description", subject: build
= render 'ci/status/badge', status: @build.detailed_status(current_user)
Build
%strong ##{@build.id}
in pipeline
......
......@@ -9,7 +9,7 @@
%tr.build.commit{class: ('retried' if retried)}
%td.status
= render "ci/status/icon_with_description", subject: build
= render "ci/status/badge", status: build.detailed_status(current_user)
%td.branch-commit
- if can?(current_user, :read_build, build)
......
......@@ -4,7 +4,7 @@
%tr.commit
%td.commit-link
= render "ci/status/icon_with_description", subject: pipeline
= render 'ci/status/badge', status: pipeline.detailed_status(current_user)
%td
= link_to namespace_project_pipeline_path(pipeline.project.namespace, pipeline.project, pipeline.id) do
......
......@@ -8,7 +8,7 @@
%tr.generic_commit_status{class: ('retried' if retried)}
%td.status
= render "ci/status/icon_with_description", subject: generic_commit_status
= render 'ci/status/badge', status: generic_commit_status.detailed_status(current_user)
%td.generic_commit_status-link
- if can?(current_user, :read_commit_status, generic_commit_status) && generic_commit_status.target_url
......
.page-content-header
.header-main-content
= render "ci/status/icon_with_description", subject: @pipeline
= render 'ci/status/badge', status: @pipeline.detailed_status(current_user)
%strong Pipeline ##{@commit.pipelines.last.id}
triggered #{time_ago_with_tooltip(@commit.authored_date)} by
= author_avatar(@commit, size: 24)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment