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

_gitlab_ci.html.haml « instance_configuration « help « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53fa3f8987363badb65cfaee4b87f036063c774c (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
- content_for :table_content do
  %li= link_to _('GitLab CI'), '#gitlab-ci'

- content_for :settings_content do
  %h2#gitlab-ci
    = _('GitLab CI')

  %p
    = _('Below are the current settings regarding')
    = succeed('.') { link_to(_('GitLab CI'), 'https://about.gitlab.com/gitlab-ci', target: '_blank') }

  .table-responsive
    %table
      %thead
        %tr
          %th= _('Setting')
          %th= instance_configuration_host(@instance_configuration.settings[:host])
          %th= _('Default')
      %tbody
        %tr
          - artifacts_size = @instance_configuration.settings[:gitlab_ci][:artifacts_max_size]
          %td= _('Artifacts maximum size')
          %td= instance_configuration_human_size_cell(artifacts_size[:value])
          %td= instance_configuration_human_size_cell(artifacts_size[:default])