Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_specific_runners.html.haml « runners « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7fe141e802f16310977f92adbd516c70f78ea67 (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
%h3
  = _('Specific Runners')

.bs-callout.help-callout
  = render partial: 'ci/runner/how_to_setup_runner_automatically',
           locals: { type: 'specific',
                     clusters_path: project_clusters_path(@project) }
  %hr
  = render partial: 'ci/runner/how_to_setup_runner',
           locals: { registration_token: @project.runners_token,
                     type: 'specific',
                     reset_token_url: reset_registration_token_namespace_project_settings_ci_cd_path,
                     project_path: @project.path_with_namespace,
                     group_path: '' }

- 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", :params => { :anchor => '#js-runners-settings' }