Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/shared/runners/show.html.haml')
-rw-r--r--app/views/shared/runners/show.html.haml62
1 files changed, 0 insertions, 62 deletions
diff --git a/app/views/shared/runners/show.html.haml b/app/views/shared/runners/show.html.haml
deleted file mode 100644
index 757ec870f79..00000000000
--- a/app/views/shared/runners/show.html.haml
+++ /dev/null
@@ -1,62 +0,0 @@
-- page_title "#{@runner.description} ##{@runner.id}", _("Runners")
-
-%h2.page-title
- = s_('Runners|Runner #%{runner_id}' % { runner_id: @runner.id })
- = render 'shared/runners/runner_type_badge', runner: @runner
-
-.table-holder
- %table.table
- %thead
- %tr
- %th= s_('Runners|Property Name')
- %th= s_('Runners|Value')
- %tr
- %td= s_('Runners|Active')
- %td= @runner.active? ? _('Yes') : _('No')
- %tr
- %td= s_('Runners|Protected')
- %td= @runner.ref_protected? ? _('Yes') : _('No')
- %tr
- %td= s_('Runners|Can run untagged jobs')
- %td= @runner.run_untagged? ? _('Yes') : _('No')
- - unless @runner.group_type?
- %tr
- %td= s_('Runners|Locked to this project')
- %td= @runner.locked? ? _('Yes') : _('No')
- %tr
- %td= s_('Runners|Tags')
- %td
- - @runner.tag_list.sort.each do |tag|
- %span.badge.badge-primary
- = tag
- %tr
- %td= s_('Runners|Name')
- %td= @runner.name
- %tr
- %td= s_('Runners|Version')
- %td= @runner.version
- %tr
- %td= s_('Runners|IP Address')
- %td= @runner.ip_address
- %tr
- %td= s_('Runners|Revision')
- %td= @runner.revision
- %tr
- %td= s_('Runners|Platform')
- %td= @runner.platform
- %tr
- %td= s_('Runners|Architecture')
- %td= @runner.architecture
- %tr
- %td= s_('Runners|Description')
- %td= @runner.description
- %tr
- %td= s_('Runners|Maximum job timeout')
- %td= @runner.maximum_timeout_human_readable
- %tr
- %td= s_('Runners|Last contact')
- %td
- - if @runner.contacted_at
- = time_ago_with_tooltip @runner.contacted_at
- - else
- = s_('Never')