summaryrefslogtreecommitdiff
path: root/app/views/projects/runners/_specific_runners.html.haml
blob: 28ccbf7eb154477b681e09d544e76c8b8b566a43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%h3 Specific Runners

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

- if @project_runners.any?
  %h4.underlined-title Runners activated for this project
  %ul.bordered-list.activated-specific-runners
    = render partial: 'projects/runners/runner', collection: @project_runners, as: :runner

- if @assignable_runners.any?
  %h4.underlined-title Available specific runners
  %ul.bordered-list.available-specific-runners
    = render partial: 'projects/runners/runner', collection: @assignable_runners, as: :runner
  = paginate @assignable_runners, theme: "gitlab"