summaryrefslogtreecommitdiff
path: root/app/views/projects/pipeline_schedules/_variable_row.html.haml
blob: 564cb5d1ca94c27b30120c133748ba5d4193e35f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- id = local_assigns.fetch(:id, nil)
- key = local_assigns.fetch(:key, "")
- value = local_assigns.fetch(:value, "")
%li.js-row.pipeline-variable-row{ data: { is_persisted: "#{!id.nil?}" } }
  .pipeline-variable-row-body
    %input{ type: "hidden", name: "schedule[variables_attributes][][id]", value: id }
    %input.js-destroy-input{ type: "hidden", name: "schedule[variables_attributes][][_destroy]" }
    %input.js-user-input.pipeline-variable-key-input.form-control{ type: "text",
      name: "schedule[variables_attributes][][key]",
      value: key,
      placeholder: s_('PipelineSchedules|Input variable key') }
    %textarea.js-user-input.pipeline-variable-value-input.form-control{ rows: 1,
      name: "schedule[variables_attributes][][value]",
      placeholder: s_('PipelineSchedules|Input variable value') }
      = value
  %button.js-row-remove-button.pipeline-variable-row-remove-button{ 'aria-label': s_('PipelineSchedules|Remove variable row') }
    %i.fa.fa-minus-circle{ 'aria-hidden': "true" }