summaryrefslogtreecommitdiff
path: root/app/views/projects/runners/_form.html.haml
blob: 33a9a96183cb821179c9bcffe959afef5d76ca19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
= form_for runner, url: runner_form_url, html: { class: 'form-horizontal' } do |f|
  = form_errors(runner)
  .form-group
    = label :active, "Active", class: 'control-label'
    .col-sm-10
      .checkbox
        = f.check_box :active
        %span.light Paused Runners don't accept new builds
  .form-group
    = label :run_untagged, 'Run untagged jobs', class: 'control-label'
    .col-sm-10
      .checkbox
        = f.check_box :run_untagged
        %span.light Indicates whether this runner can pick jobs without tags
  .form-group
    = label :locked, 'Lock to current projects', class: 'control-label'
    .col-sm-10
      .checkbox
        = f.check_box :locked
        %span.light When a runner is locked, it cannot be assigned to other projects
  .form-group
    = label_tag :token, class: 'control-label' do
      Token
    .col-sm-10
      = f.text_field :token, class: 'form-control', readonly: true
  .form-group
    = label_tag :description, class: 'control-label' do
      Description
    .col-sm-10
      = f.text_field :description, class: 'form-control'
  .form-group
    = label_tag :tag_list, class: 'control-label' do
      Tags
    .col-sm-10
      = f.text_field :tag_list, value: runner.tag_list.to_s, class: 'form-control'
      .help-block You can setup jobs to only use Runners with specific tags
  .form-actions
    = f.submit 'Save changes', class: 'btn btn-save'