Commit 694ab941 authored by Annabel Dunstone's avatar Annabel Dunstone

Rearrange and update admin builds

parent 16fda5f1
- project = build.project - project = build.project
%tr.build %tr.build.commit
%td.status %td.status
= ci_status_with_icon(build.status) = ci_status_with_icon(build.status)
%td.build-link %td
- if can?(current_user, :read_build, build.project) .branch-commit
= link_to namespace_project_build_url(build.project.namespace, build.project, build) do - if can?(current_user, :read_build, build.project)
%strong Build ##{build.id} = link_to namespace_project_build_url(build.project.namespace, build.project, build) do
- else %span ##{build.id}
%strong Build ##{build.id} - else
%span ##{build.id}
- if build.stuck? - if build.stuck?
%i.fa.fa-warning.text-warning %i.fa.fa-warning.text-warning
%td - if build.ref
- if project = link_to build.ref, namespace_project_commits_path(build.project.namespace, build.project, build.ref), class: "monospace branch-name"
= link_to project.name_with_namespace, admin_namespace_project_path(project.namespace, project) - else
.light none
= icon("code-fork")
%td = link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "monospace commit-id"
= link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "monospace"
- if build.tags.any?
.label-container
- build.tags.each do |tag|
%span.label.label-primary
= tag
- if build.try(:trigger_request)
%span.label.label-info triggered
- if build.try(:allow_failure)
%span.label.label-danger allowed to fail
%td %td
- if build.ref - if project
= link_to build.ref, namespace_project_commits_path(build.project.namespace, build.project, build.ref) = link_to project.name_with_namespace, admin_namespace_project_path(project.namespace, project)
- else
.light none
%td %td
- if build.try(:runner) - if build.try(:runner)
...@@ -36,22 +46,15 @@ ...@@ -36,22 +46,15 @@
#{build.stage} / #{build.name} #{build.stage} / #{build.name}
%td %td
- if build.tags.any?
- build.tags.each do |tag|
%span.label.label-primary
= tag
- if build.try(:trigger_request)
%span.label.label-info triggered
- if build.try(:allow_failure)
%span.label.label-danger allowed to fail
%td.duration
- if build.duration - if build.duration
#{duration_in_words(build.finished_at, build.started_at)} %p.duration
= icon("clock-o")
#{duration_in_words(build.finished_at, build.started_at)}
%td.timestamp
- if build.finished_at - if build.finished_at
%span #{time_ago_with_tooltip(build.finished_at)} %p.finished-at
= icon("calendar")
%span #{time_ago_with_tooltip(build.finished_at)}
- if defined?(coverage) && coverage - if defined?(coverage) && coverage
%td.coverage %td.coverage
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
.row-content-block.second-block .row-content-block.second-block
#{(@scope || 'all').capitalize} builds #{(@scope || 'all').capitalize} builds
%ul.content-list %ul.content-list.builds-content-list
- if @builds.blank? - if @builds.blank?
%li %li
.nothing-here-block No builds to show .nothing-here-block No builds to show
...@@ -37,15 +37,11 @@ ...@@ -37,15 +37,11 @@
%thead %thead
%tr %tr
%th Status %th Status
%th Build ID
%th Project
%th Commit %th Commit
%th Ref %th Project
%th Runner %th Runner
%th Name %th Name
%th Tags %th
%th Duration
%th Finished at
%th %th
- @builds.each do |build| - @builds.each do |build|
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
= ci_status_with_icon(build.status) = ci_status_with_icon(build.status)
%td %td
%div.branch-commit .branch-commit
- if can?(current_user, :read_build, build) - if can?(current_user, :read_build, build)
= link_to namespace_project_build_url(build.project.namespace, build.project, build) do = link_to namespace_project_build_url(build.project.namespace, build.project, build) do
%span ##{build.id} %span ##{build.id}
...@@ -28,17 +28,17 @@ ...@@ -28,17 +28,17 @@
- if defined?(commit_sha) && commit_sha - if defined?(commit_sha) && commit_sha
= link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "commit-id monospace" = link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "commit-id monospace"
.label-container - if build.tags.any?
- if build.tags.any? .label-container
- build.tags.each do |tag| - build.tags.each do |tag|
%span.label.label-primary %span.label.label-primary
= tag = tag
- if build.try(:trigger_request) - if build.try(:trigger_request)
%span.label.label-info triggered %span.label.label-info triggered
- if build.try(:allow_failure) - if build.try(:allow_failure)
%span.label.label-danger allowed to fail %span.label.label-danger allowed to fail
- if defined?(retried) && retried - if defined?(retried) && retried
%span.label.label-warning retried %span.label.label-warning retried
- if defined?(runner) && runner - if defined?(runner) && runner
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
%td %td
%div.branch-commit .branch-commit
= link_to namespace_project_pipeline_path(@project.namespace, @project, pipeline.id) do = link_to namespace_project_pipeline_path(@project.namespace, @project, pipeline.id) do
%span ##{pipeline.id} %span ##{pipeline.id}
- if pipeline.ref - if pipeline.ref
......
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