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

_form.html.haml « ci_cd « settings « groups « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8fad73f1249a8457fbcf8870ff91debb747c507a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.row.gl-mt-3
  .col-lg-12
    = form_for group, url: group_settings_ci_cd_path(group, anchor: 'js-general-pipeline-settings') do |f|
      = form_errors(group)
      %fieldset.builds-feature
        .form-group
          = f.label :max_artifacts_size, _('Maximum artifacts size (MB)'), class: 'label-bold'
          = f.number_field :max_artifacts_size, class: 'form-control'
          %p.form-text.text-muted
            = _("Set the maximum file size for each job's artifacts")
            = link_to sprite_icon('question-o'), help_page_path('user/admin_area/settings/continuous_integration', anchor: 'maximum-artifacts-size'), target: '_blank'

        = f.submit _('Save changes'), class: "btn btn-success"