gitlab-org--gitlab-foss/app/views/admin/runners/_runner.html.haml

52 lines
1.9 KiB
Plaintext
Raw Normal View History

%tr{ id: dom_id(runner) }
2015-08-26 01:42:46 +00:00
%td
- if runner.instance_type?
%span.badge.badge-success shared
- elsif runner.group_type?
2018-05-08 15:49:30 +00:00
%span.badge.badge-success group
2015-08-26 01:42:46 +00:00
- else
2018-04-13 19:37:55 +00:00
%span.badge.badge-info specific
- if runner.locked?
%span.badge.badge-warning locked
2015-08-26 01:42:46 +00:00
- unless runner.active?
2018-04-13 19:37:07 +00:00
%span.badge.badge-danger paused
2015-08-26 01:42:46 +00:00
%td
2015-12-04 11:55:23 +00:00
= link_to admin_runner_path(runner) do
2015-08-26 01:42:46 +00:00
= runner.short_sha
%td
= runner.description
%td
= runner.version
%td
= runner.ip_address
2015-08-26 01:42:46 +00:00
%td
- if runner.instance_type? || runner.group_type?
n/a
2015-08-26 01:42:46 +00:00
- else
= runner.projects.count(:all)
%td
#{runner.builds.count(:all)}
%td
- runner.tag_list.sort.each do |tag|
%span.badge.badge-primary
2015-08-26 01:42:46 +00:00
= tag
%td
- if runner.contacted_at
= time_ago_with_tooltip runner.contacted_at
2015-08-26 01:42:46 +00:00
- else
Never
%td.admin-runner-btn-group-cell
.float-right.btn-group
2018-05-10 19:22:56 +00:00
= link_to admin_runner_path(runner), class: 'btn btn-sm btn-default has-tooltip', title: 'Edit', ref: 'tooltip', aria: { label: 'Edit' }, data: { placement: 'top', container: 'body'} do
= icon('pencil')
2015-08-26 01:42:46 +00:00
 
- if runner.active?
2018-05-10 19:22:56 +00:00
= link_to [:pause, :admin, runner], method: :get, class: 'btn btn-sm btn-default has-tooltip', title: 'Pause', ref: 'tooltip', aria: { label: 'Pause' }, data: { placement: 'top', container: 'body', confirm: "Are you sure?" } do
= icon('pause')
2015-08-26 01:42:46 +00:00
- else
2018-05-10 19:22:56 +00:00
= link_to [:resume, :admin, runner], method: :get, class: 'btn btn-default btn-sm has-tooltip', title: 'Resume', ref: 'tooltip', aria: { label: 'Resume' }, data: { placement: 'top', container: 'body'} do
= icon('play')
= link_to [:admin, runner], method: :delete, class: 'btn btn-danger btn-sm has-tooltip', title: 'Remove', ref: 'tooltip', aria: { label: 'Remove' }, data: { placement: 'top', container: 'body', confirm: "Are you sure?" } do
= icon('remove')