gitlab-org--gitlab-foss/app/views/ci/variables/_variable_header.html.haml
Filipa Lacerda 31861b0f05 Adds header column to variables list
For the variables list in CI/CD settings
this commits adds an header row with titles
2019-05-07 15:23:47 +01:00

16 lines
622 B
Text

- only_key_value = local_assigns.fetch(:only_key_value, false)
%li.ci-variable-row.m-0.d-none.d-sm-block
.d-flex.w-100.align-items-center.pb-2
.bold.table-section.section-15.append-right-10
= s_('CiVariables|Type')
.bold.table-section.section-15.append-right-10
= s_('CiVariables|Key')
.bold.table-section.section-15.append-right-10
= s_('CiVariables|Value')
- unless only_key_value
.bold.table-section.section-20
= s_('CiVariables|State')
.bold.table-section.section-20
= s_('CiVariables|Masked')
= render_if_exists 'ci/variables/environment_scope_header'