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

43 lines
1.2 KiB
Plaintext
Raw Normal View History

%tr{ id: dom_id(runner) }
2015-08-26 01:42:46 +00:00
%td
- if runner.shared?
%span.label.label-success shared
- else
%span.label.label-info specific
- if runner.locked?
%span.label.label-warning locked
2015-08-26 01:42:46 +00:00
- unless runner.active?
%span.label.label-danger paused
%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
2015-08-26 01:42:46 +00:00
%td
- if runner.shared?
n/a
2015-08-26 01:42:46 +00:00
- else
= runner.projects.count(:all)
%td
#{runner.builds.count(:all)}
%td
- runner.tag_list.each do |tag|
%span.label.label-primary
= tag
%td
- if runner.contacted_at
#{time_ago_in_words(runner.contacted_at)} ago
- else
Never
%td
.pull-right
2015-12-04 11:55:23 +00:00
= link_to 'Edit', admin_runner_path(runner), class: 'btn btn-sm'
2015-08-26 01:42:46 +00:00
 
- if runner.active?
2015-12-04 11:55:23 +00:00
= link_to 'Pause', [:pause, :admin, runner], data: { confirm: "Are you sure?" }, method: :get, class: 'btn btn-danger btn-sm'
2015-08-26 01:42:46 +00:00
- else
2015-12-04 11:55:23 +00:00
= link_to 'Resume', [:resume, :admin, runner], method: :get, class: 'btn btn-success btn-sm'
= link_to 'Remove', [:admin, runner], data: { confirm: "Are you sure?" }, method: :delete, class: 'btn btn-danger btn-sm'
2015-08-26 01:42:46 +00:00