summaryrefslogtreecommitdiff
path: root/app/views/projects/runners/_form.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/runners/_form.html.haml')
-rw-r--r--app/views/projects/runners/_form.html.haml18
1 files changed, 9 insertions, 9 deletions
diff --git a/app/views/projects/runners/_form.html.haml b/app/views/projects/runners/_form.html.haml
index e44b4673557..e8bc7705a50 100644
--- a/app/views/projects/runners/_form.html.haml
+++ b/app/views/projects/runners/_form.html.haml
@@ -1,52 +1,52 @@
= form_for runner, url: runner_form_url do |f|
= form_errors(runner)
.form-group.row
- = label :active, "Active", class: 'col-form-label'
+ = label :active, "Active", class: 'col-form-label col-sm-2'
.col-sm-10
.form-check
= f.check_box :active
%span.light Paused Runners don't accept new jobs
.form-group.row
- = label :protected, "Protected", class: 'col-form-label'
+ = label :protected, "Protected", class: 'col-form-label col-sm-2'
.col-sm-10
.form-check
= f.check_box :access_level, {}, 'ref_protected', 'not_protected'
%span.light This runner will only run on pipelines triggered on protected branches
.form-group.row
- = label :run_untagged, 'Run untagged jobs', class: 'col-form-label'
+ = label :run_untagged, 'Run untagged jobs', class: 'col-form-label col-sm-2'
.col-sm-10
.form-check
= f.check_box :run_untagged
%span.light Indicates whether this runner can pick jobs without tags
.form-group.row
- = label :locked, 'Lock to current projects', class: 'col-form-label'
+ = label :locked, 'Lock to current projects', class: 'col-form-label col-sm-2'
.col-sm-10
.form-check
= f.check_box :locked
%span.light When a runner is locked, it cannot be assigned to other projects
.form-group.row
- = label_tag :token, class: 'col-form-label' do
+ = label_tag :token, class: 'col-form-label col-sm-2' do
Token
.col-sm-10
= f.text_field :token, class: 'form-control', readonly: true
.form-group.row
- = label_tag :ip_address, class: 'col-form-label' do
+ = label_tag :ip_address, class: 'col-form-label col-sm-2' do
IP Address
.col-sm-10
= f.text_field :ip_address, class: 'form-control', readonly: true
.form-group.row
- = label_tag :description, class: 'col-form-label' do
+ = label_tag :description, class: 'col-form-label col-sm-2' do
Description
.col-sm-10
= f.text_field :description, class: 'form-control'
.form-group.row
- = label_tag :maximum_timeout_human_readable, class: 'col-form-label' do
+ = label_tag :maximum_timeout_human_readable, class: 'col-form-label col-sm-2' do
Maximum job timeout
.col-sm-10
= f.text_field :maximum_timeout_human_readable, class: 'form-control'
.form-text.text-muted This timeout will take precedence when lower than Project-defined timeout
.form-group.row
- = label_tag :tag_list, class: 'col-form-label' do
+ = label_tag :tag_list, class: 'col-form-label col-sm-2' do
Tags
.col-sm-10
= f.text_field :tag_list, value: runner.tag_list.sort.join(', '), class: 'form-control'