debian-mirror-gitlab/app/views/projects/runners/edit.html.haml

30 lines
1,020 B
Text
Raw Normal View History

2015-11-26 14:37:03 +05:30
- page_title "Edit", "#{@runner.description} ##{@runner.id}", "Runners"
2015-09-25 12:07:36 +05:30
%h4 Runner ##{@runner.id}
%hr
2015-10-24 18:46:33 +05:30
= form_for @runner, url: runner_path(@runner), html: { class: 'form-horizontal' } do |f|
2015-09-25 12:07:36 +05:30
.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_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
2015-12-23 02:04:40 +05:30
= f.text_field :tag_list, value: @runner.tag_list.to_s, class: 'form-control'
2015-09-25 12:07:36 +05:30
.help-block You can setup jobs to only use runners with specific tags
.form-actions
2015-12-23 02:04:40 +05:30
= f.submit 'Save changes', class: 'btn btn-save'