debian-mirror-gitlab/app/views/ci/variables/_header.html.haml

11 lines
306 B
Text
Raw Normal View History

2019-02-15 15:39:39 +05:30
- expanded = local_assigns.fetch(:expanded)
2021-04-17 20:07:23 +05:30
%h4.settings-title.js-settings-toggle.js-settings-toggle-trigger-only
2019-07-07 11:18:12 +05:30
= _('Variables')
2019-02-15 15:39:39 +05:30
2022-07-23 23:45:48 +05:30
= render Pajamas::ButtonComponent.new(button_options: { class: 'js-settings-toggle' }) do
2019-02-15 15:39:39 +05:30
= expanded ? _('Collapse') : _('Expand')
2019-12-26 22:10:19 +05:30
%p
2019-02-15 15:39:39 +05:30
= render "ci/variables/content"