BigW Consortium Gitlab

_specific_runners.html.haml 670 Bytes
Newer Older
1
%h3 Specific Runners
2

3 4 5
= render partial: 'ci/runner/how_to_setup_runner',
         locals: { registration_token: @project.runners_token,
                   type: 'specific' }
6

Lin Jen-Shin committed
7
- if @project_runners.any?
8 9
  %h4.underlined-title Runners activated for this project
  %ul.bordered-list.activated-specific-runners
10
    = render partial: 'projects/runners/runner', collection: @project_runners, as: :runner
11

Lin Jen-Shin committed
12
- if @assignable_runners.any?
13 14
  %h4.underlined-title Available specific runners
  %ul.bordered-list.available-specific-runners
15
    = render partial: 'projects/runners/runner', collection: @assignable_runners, as: :runner
16
  = paginate @assignable_runners, theme: "gitlab"