summaryrefslogtreecommitdiff
path: root/app/views/admin/runners
diff options
context:
space:
mode:
authorAlexis Reigel <alexis.reigel.ext@siemens.com>2018-08-27 16:22:59 +0200
committerAlexis Reigel <alexis.reigel.ext@siemens.com>2018-08-29 15:02:54 +0200
commit03a074f75fc9cc81e325bd37cfa0b0527f0e6f26 (patch)
tree5bf5125e8a8d682034947b3d26953eb1b9a7fa2f /app/views/admin/runners
parent7d316a9bbb1e01931c1536b02e4f0f1133d14eb8 (diff)
downloadgitlab-ce-03a074f75fc9cc81e325bd37cfa0b0527f0e6f26.tar.gz
dry up view by extracting layout template
Diffstat (limited to 'app/views/admin/runners')
-rw-r--r--app/views/admin/runners/_runner.html.haml104
-rw-r--r--app/views/admin/runners/_runner_table_cell.html.haml4
2 files changed, 47 insertions, 61 deletions
diff --git a/app/views/admin/runners/_runner.html.haml b/app/views/admin/runners/_runner.html.haml
index 95dccbc9841..9c15226f0ec 100644
--- a/app/views/admin/runners/_runner.html.haml
+++ b/app/views/admin/runners/_runner.html.haml
@@ -1,65 +1,47 @@
.gl-responsive-table-row{ id: dom_id(runner) }
- .table-section.section-10
- .table-mobile-header{ role: 'rowheader' }= _('Type')
- .table-mobile-content
- - if runner.instance_type?
- %span.badge.badge-success shared
- - elsif runner.group_type?
- %span.badge.badge-success group
- - else
- %span.badge.badge-info specific
- - if runner.locked?
- %span.badge.badge-warning locked
- - unless runner.active?
- %span.badge.badge-danger paused
-
- .table-section.section-10
- .table-mobile-header{ role: 'rowheader' }= _('Runner token')
- .table-mobile-content
- = link_to runner.short_sha, admin_runner_path(runner)
-
- .table-section.section-10
- .table-mobile-header{ role: 'rowheader' }= _('Description')
- .table-mobile-content
- = runner.description
-
- .table-section.section-10
- .table-mobile-header{ role: 'rowheader' }= _('Version')
- .table-mobile-content
- = runner.version
-
- .table-section.section-10
- .table-mobile-header{ role: 'rowheader' }= _('IP Address')
- .table-mobile-content
- = runner.ip_address
-
- .table-section.section-10
- .table-mobile-header{ role: 'rowheader' }= _('Projects')
- .table-mobile-content
- - if runner.instance_type? || runner.group_type?
- = _('n/a')
- - else
- = runner.projects.count(:all)
-
- .table-section.section-10
- .table-mobile-header{ role: 'rowheader' }= _('Jobs')
- .table-mobile-content
- = runner.builds.count(:all)
-
- .table-section.section-10
- .table-mobile-header{ role: 'rowheader' }= _('Tags')
- .table-mobile-content
- - runner.tag_list.sort.each do |tag|
- %span.badge.badge-primary
- = tag
-
- .table-section.section-10
- .table-mobile-header{ role: 'rowheader' }= _('Last contact')
- .table-mobile-content
- - if runner.contacted_at
- = time_ago_with_tooltip runner.contacted_at
- - else
- = _('Never')
+ = render layout: 'runner_table_cell', locals: { label: _('Type') } do
+ - if runner.instance_type?
+ %span.badge.badge-success shared
+ - elsif runner.group_type?
+ %span.badge.badge-success group
+ - else
+ %span.badge.badge-info specific
+ - if runner.locked?
+ %span.badge.badge-warning locked
+ - unless runner.active?
+ %span.badge.badge-danger paused
+
+ = render layout: 'runner_table_cell', locals: { label: _('Runner token') } do
+ = link_to runner.short_sha, admin_runner_path(runner)
+
+ = render layout: 'runner_table_cell', locals: { label: _('Description') } do
+ = runner.description
+
+ = render layout: 'runner_table_cell', locals: { label: _('Version') } do
+ = runner.version
+
+ = render layout: 'runner_table_cell', locals: { label: _('IP Address') } do
+ = runner.ip_address
+
+ = render layout: 'runner_table_cell', locals: { label: _('Projects') } do
+ - if runner.instance_type? || runner.group_type?
+ = _('n/a')
+ - else
+ = runner.projects.count(:all)
+
+ = render layout: 'runner_table_cell', locals: { label: _('Jobs') } do
+ = runner.builds.count(:all)
+
+ = render layout: 'runner_table_cell', locals: { label: _('Tags') } do
+ - runner.tag_list.sort.each do |tag|
+ %span.badge.badge-primary
+ = tag
+
+ = render layout: 'runner_table_cell', locals: { label: _('Last contact') } do
+ - if runner.contacted_at
+ = time_ago_with_tooltip runner.contacted_at
+ - else
+ = _('Never')
.table-section.table-button-footer.section-10
.btn-group.table-action-buttons
diff --git a/app/views/admin/runners/_runner_table_cell.html.haml b/app/views/admin/runners/_runner_table_cell.html.haml
new file mode 100644
index 00000000000..78526ee6d23
--- /dev/null
+++ b/app/views/admin/runners/_runner_table_cell.html.haml
@@ -0,0 +1,4 @@
+.table-section.section-10
+ .table-mobile-header{ role: 'rowheader' }= label
+ .table-mobile-content
+ = yield