summaryrefslogtreecommitdiff
path: root/app/views/shared/deploy_tokens/_form.html.haml
blob: 052d68baf71dbc6ba9cac8b046bd26359495d357 (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
40
41
42
43
44
45
46
47
48
49
50
51
%p.profile-settings-content
  = s_("DeployTokens|Pick a name for your unique deploy token.")

= form_for token, url: create_deploy_token_path(group_or_project, anchor: 'js-deploy-tokens'), method: :post, remote: Feature.enabled?(:ajax_new_deploy_token, group_or_project) do |f|
  = form_errors(token)

  .form-group
    = f.label :name, class: 'label-bold'
    = f.text_field :name, class: 'form-control gl-form-input qa-deploy-token-name', required: true

  .form-group
    = f.label :expires_at, _('Expires at (optional)'), class: 'label-bold'
    = f.text_field :expires_at, class: 'datepicker form-control qa-deploy-token-expires-at', value: f.object.expires_at
    .text-secondary= s_('DeployTokens|Unless you enter a date, the token does not expire.')

  .form-group
    = f.label :username, _('Username (optional)'), class: 'label-bold'
    = f.text_field :username, class: 'form-control qa-deploy-token-username'
    .text-secondary= s_('DeployTokens|Unless you specify a username, it is set to "gitlab+deploy-token-{n}".')

  .form-group
    = f.label :scopes, _('Scopes [Select 1 or more]'), class: 'label-bold'
    %fieldset.form-group.form-check
      = f.check_box :read_repository, class: 'form-check-input qa-deploy-token-read-repository'
      = label_tag ("deploy_token_read_repository"), 'read_repository', class: 'label-bold form-check-label'
      .text-secondary= s_('DeployTokens|Allows read-only access to the repository.')

    - if container_registry_enabled?(group_or_project)
      %fieldset.form-group.form-check
        = f.check_box :read_registry, class: 'form-check-input qa-deploy-token-read-registry'
        = label_tag ("deploy_token_read_registry"), 'read_registry', class: 'label-bold form-check-label'
        .text-secondary= s_('DeployTokens|Allows read-only access to registry images.')

      %fieldset.form-group.form-check
        = f.check_box :write_registry, class: 'form-check-input'
        = label_tag ("deploy_token_write_registry"), 'write_registry', class: 'label-bold form-check-label'
        .text-secondary= s_('DeployTokens|Allows write access to registry images.')

    - if packages_registry_enabled?(group_or_project)
      %fieldset.form-group.form-check
        = f.check_box :read_package_registry, class: 'form-check-input'
        = label_tag ("deploy_token_read_package_registry"), 'read_package_registry', class: 'label-bold form-check-label'
        .text-secondary= s_('DeployTokens|Allows read access to the package registry.')

      %fieldset.form-group.form-check
        = f.check_box :write_package_registry, class: 'form-check-input'
        = label_tag ("deploy_token_write_package_registry"), 'write_package_registry', class: 'label-bold form-check-label'
        .text-secondary= s_('DeployTokens|Allows write access to the package registry.')

  .gl-mt-3
    = f.submit s_('DeployTokens|Create deploy token'), class: 'btn gl-button btn-success qa-create-deploy-token'