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

_project_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: af8f39ce0adcd04734cce8e42ccdf04d481e5edb (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
%h4
  = s_('Runners|Project runners')

.bs-callout.help-callout
  %p= s_('Runners|These runners are assigned to this project.')
  - if Feature.enabled?(:create_runner_workflow_for_namespace, @project.namespace)
    - if can?(current_user, :create_runner, @project)
      = render Pajamas::ButtonComponent.new(href: new_project_runner_path(@project), variant: :confirm) do
        = s_('Runners|New project runner')
      .gl-display-inline
        #js-project-runner-registration-dropdown{ data: { registration_token: @project.runners_token, project_id: @project.id } }
    - else
      = _('Please contact an admin to create runners.')
      = link_to _('Learn more.'), help_page_path('user/admin_area/settings/continuous_integration', anchor: 'restrict-runner-registration-by-all-users-in-an-instance'), target: '_blank', rel: 'noopener noreferrer'
  - else
    - if can?(current_user, :register_project_runners, @project)
      = render partial: 'ci/runner/how_to_setup_runner',
              locals: { registration_token: @project.runners_token,
                        type: _('project'),
                        reset_token_url: reset_registration_token_namespace_project_settings_ci_cd_path,
                        project_path: @project.path_with_namespace,
                        group_path: '' }
    - else
      = _('Please contact an admin to register runners.')
      = link_to _('Learn more.'), help_page_path('user/admin_area/settings/continuous_integration', anchor: 'restrict-runner-registration-by-all-users-in-an-instance'), target: '_blank', rel: 'noopener noreferrer'

%hr

- if @project_runners.any?
  %h4.underlined-title= s_('Runners|Assigned project runners')
  %ul.bordered-list{ data: { testid: 'assigned_project_runners' } }
    = render partial: 'projects/runners/runner', collection: @project_runners, as: :runner
  = paginate @project_runners, theme: "gitlab", param_name: "project_page", params: { expand_runners: true, anchor: 'js-runners-settings' }

- if @assignable_runners.any?
  %h4.underlined-title= _('Other available runners')
  %ul.bordered-list{ data: { testid: 'available_project_runners' } }
    = render partial: 'projects/runners/runner', collection: @assignable_runners, as: :runner
  = paginate @assignable_runners, theme: "gitlab", param_name: "specific_page", :params => { :anchor => 'js-runners-settings'}