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

16 lines
642 B
Text
Raw Normal View History

2016-11-03 12:29:30 +05:30
%h3 Specific Runners
2015-09-25 12:07:36 +05:30
2018-03-27 19:54:05 +05:30
= render partial: 'ci/runner/how_to_setup_specific_runner',
locals: { registration_token: @project.runners_token }
2015-09-25 12:07:36 +05:30
2016-06-22 15:30:34 +05:30
- if @project_runners.any?
2015-09-25 12:07:36 +05:30
%h4.underlined-title Runners activated for this project
%ul.bordered-list.activated-specific-runners
2017-08-17 22:00:37 +05:30
= render partial: 'projects/runners/runner', collection: @project_runners, as: :runner
2015-09-25 12:07:36 +05:30
2016-06-22 15:30:34 +05:30
- if @assignable_runners.any?
2015-09-25 12:07:36 +05:30
%h4.underlined-title Available specific runners
%ul.bordered-list.available-specific-runners
2017-08-17 22:00:37 +05:30
= render partial: 'projects/runners/runner', collection: @assignable_runners, as: :runner
2016-11-03 12:29:30 +05:30
= paginate @assignable_runners, theme: "gitlab"