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/admin/runners/_runner.html.haml')
-rw-r--r--app/views/admin/runners/_runner.html.haml43
1 files changed, 22 insertions, 21 deletions
diff --git a/app/views/admin/runners/_runner.html.haml b/app/views/admin/runners/_runner.html.haml
index 0d819dc5b47..c3e4626c14e 100644
--- a/app/views/admin/runners/_runner.html.haml
+++ b/app/views/admin/runners/_runner.html.haml
@@ -1,27 +1,28 @@
+-# Note: This file should stay aligned with:
+-# `app/views/groups/runners/_runner.html.haml`
+
.gl-responsive-table-row{ id: dom_id(runner) }
.table-section.section-10.section-wrap
.table-mobile-header{ role: 'rowheader' }= _('Type')
.table-mobile-content
- if runner.instance_type?
- %span.badge.badge-success shared
+ %span.badge.badge-pill.gl-badge.sm.badge-success= _("shared")
- elsif runner.group_type?
- %span.badge.badge-success group
+ %span.badge.badge-pill.gl-badge.sm.badge-success= _("group")
- else
- %span.badge.badge-info specific
+ %span.badge.badge-pill.gl-badge.sm.badge-info= _("specific")
- if runner.locked?
- %span.badge.badge-warning locked
+ %span.badge.badge-pill.gl-badge.sm.badge-warning= _("locked")
- unless runner.active?
- %span.badge.badge-danger paused
+ %span.badge.badge-pill.gl-badge.sm.badge-danger= _("paused")
- .table-section.section-10
- .table-mobile-header{ role: 'rowheader' }= _('Runner token')
+ .table-section.section-30
+ .table-mobile-header{ role: 'rowheader' }= s_('Runners|Runner')
.table-mobile-content
- = link_to runner.short_sha, admin_runner_path(runner)
-
- .table-section.section-20
- .table-mobile-header{ role: 'rowheader' }= _('Description')
- .table-mobile-content.str-truncated.has-tooltip{ title: runner.description }
- = runner.description
+ = link_to("##{runner.id} (#{runner.short_sha})", admin_runner_path(runner))
+ .gl-text-truncate
+ %span{ title: runner.description, data: { toggle: 'tooltip', container: 'body' } }
+ = runner.description
.table-section.section-10
.table-mobile-header{ role: 'rowheader' }= _('Version')
@@ -65,15 +66,15 @@
.table-section.table-button-footer.section-10
.btn-group.table-action-buttons
.btn-group
- = link_to admin_runner_path(runner), class: 'gl-button btn btn-default has-tooltip', title: _('Edit'), ref: 'tooltip', aria: { label: _('Edit') }, data: { placement: 'top', container: 'body'} do
- = sprite_icon('pencil')
+ = link_to admin_runner_path(runner), class: 'gl-button btn btn-default btn-icon has-tooltip', title: _('Edit'), ref: 'tooltip', aria: { label: _('Edit') }, data: { placement: 'top', container: 'body'} do
+ = sprite_icon('pencil', css_class: 'gl-icon')
.btn-group
- if runner.active?
- = link_to [:pause, :admin, runner], method: :post, class: 'gl-button btn btn-default btn-svg has-tooltip', title: _('Pause'), ref: 'tooltip', aria: { label: _('Pause') }, data: { placement: 'top', container: 'body', confirm: _('Are you sure?') } do
- = sprite_icon('pause')
+ = link_to [:pause, :admin, runner], method: :post, class: 'gl-button btn btn-default btn-icon has-tooltip', title: _('Pause'), ref: 'tooltip', aria: { label: _('Pause') }, data: { placement: 'top', container: 'body', confirm: _('Are you sure?') } do
+ = sprite_icon('pause', css_class: 'gl-icon')
- else
- = link_to [:resume, :admin, runner], method: :post, class: 'gl-button btn btn-default btn-svg has-tooltip gl-px-3', title: _('Resume'), ref: 'tooltip', aria: { label: _('Resume') }, data: { placement: 'top', container: 'body'} do
- = sprite_icon('play')
+ = link_to [:resume, :admin, runner], method: :post, class: 'gl-button btn btn-default btn-icon has-tooltip gl-px-3', title: _('Resume'), ref: 'tooltip', aria: { label: _('Resume') }, data: { placement: 'top', container: 'body'} do
+ = sprite_icon('play', css_class: 'gl-icon')
.btn-group
- = link_to [:admin, runner], method: :delete, class: 'gl-button btn btn-danger has-tooltip', title: _('Remove'), ref: 'tooltip', aria: { label: _('Remove') }, data: { placement: 'top', container: 'body', confirm: _('Are you sure?') } do
- = sprite_icon('close')
+ = link_to [:admin, runner], method: :delete, class: 'gl-button btn btn-danger btn-icon has-tooltip', title: _('Remove'), ref: 'tooltip', aria: { label: _('Remove') }, data: { placement: 'top', container: 'body', confirm: _('Are you sure?') } do
+ = sprite_icon('close', css_class: 'gl-icon')