Commit 04b33cb4 authored by Jacob Schatz's avatar Jacob Schatz Committed by Robert Speicher

Merge branch 'dz-organize-admin-settings' into 'master'

Move admin->runners tab as subnav of overview tab

cc @annabeldunstone 

See merge request !4716
parent 4e3dedaa
...@@ -20,3 +20,7 @@ ...@@ -20,3 +20,7 @@
= link_to admin_builds_path, title: 'Builds' do = link_to admin_builds_path, title: 'Builds' do
%span %span
Builds Builds
= nav_link path: ['runners#index', 'runners#show'] do
= link_to admin_runners_path, title: 'Runners' do
%span
Runners
%p.lead.prepend-top-default - @no_container = true
= render "admin/dashboard/head"
%div{ class: (container_class) }
%p.prepend-top-default
%span %span
To register a new runner you should enter the following registration token. To register a new runner you should enter the following registration token.
With this token the runner will request a unique runner token and use that for future communication. With this token the runner will request a unique runner token and use that for future communication.
%br
Registration token is Registration token is
%code{ id: 'runners-token' } #{current_application_settings.runners_registration_token} %code{ id: 'runners-token' } #{current_application_settings.runners_registration_token}
.bs-callout.clearfix .bs-callout.clearfix
.pull-left .pull-left
%p %p
You can reset runners registration token by pressing a button below. You can reset runners registration token by pressing a button below.
...@@ -16,7 +22,7 @@ ...@@ -16,7 +22,7 @@
= icon('refresh') = icon('refresh')
Reset runners registration token Reset runners registration token
.bs-callout .bs-callout
%p %p
A 'runner' is a process which runs a build. A 'runner' is a process which runs a build.
You can setup as many runners as you need. You can setup as many runners as you need.
...@@ -37,7 +43,7 @@ ...@@ -37,7 +43,7 @@
%span.label.label-danger paused %span.label.label-danger paused
\- runner will not receive any new builds \- runner will not receive any new builds
.append-bottom-20.clearfix .append-bottom-20.clearfix
.pull-left .pull-left
= form_tag admin_runners_path, id: 'runners-search', class: 'form-inline', method: :get do = form_tag admin_runners_path, id: 'runners-search', class: 'form-inline', method: :get do
.form-group .form-group
...@@ -47,9 +53,9 @@ ...@@ -47,9 +53,9 @@
.pull-right.light .pull-right.light
Runners with last contact less than a minute ago: #{@active_runners_cnt} Runners with last contact less than a minute ago: #{@active_runners_cnt}
%br %br
.table-holder .table-holder
%table.table %table.table
%thead %thead
%tr %tr
...@@ -64,4 +70,4 @@ ...@@ -64,4 +70,4 @@
- @runners.each do |runner| - @runners.each do |runner|
= render "admin/runners/runner", runner: runner = render "admin/runners/runner", runner: runner
= paginate @runners = paginate @runners
%ul.nav-links.scrolling-tabs %ul.nav-links.scrolling-tabs
.fade-left .fade-left
= nav_link(controller: %w(dashboard admin projects users groups builds), html_options: {class: 'home'}) do = nav_link(controller: %w(dashboard admin projects users groups builds runners), html_options: {class: 'home'}) do
= link_to admin_root_path, title: 'Overview', class: 'shortcuts-tree' do = link_to admin_root_path, title: 'Overview', class: 'shortcuts-tree' do
%span %span
Overview Overview
...@@ -12,10 +12,6 @@ ...@@ -12,10 +12,6 @@
= link_to admin_deploy_keys_path, title: 'Deploy Keys' do = link_to admin_deploy_keys_path, title: 'Deploy Keys' do
%span %span
Deploy Keys Deploy Keys
= nav_link path: ['runners#index', 'runners#show'] do
= link_to admin_runners_path, title: 'Runners' do
%span
Runners
= nav_link(controller: :broadcast_messages) do = nav_link(controller: :broadcast_messages) do
= link_to admin_broadcast_messages_path, title: 'Messages' do = link_to admin_broadcast_messages_path, title: 'Messages' do
%span %span
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment