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

_index.html.haml « group_variables « ci « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a74dbe793a68c57593cc8a37c6a0b5c148664781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- variables = @project.group.self_and_ancestors.map(&:variables).flatten

.ci-variable-table
  %table.gl-table.gl-w-full.gl-table-layout-fixed
    = render 'ci/group_variables/variable_header'
    - variables.each do |variable|
      %tr
        %td.gl-text-truncate
          = variable.key
        %td.gl-text-truncate
          %a.group-origin-link{ href: group_settings_ci_cd_path(variable.group) }
            = variable.group.name