diff options
author | Shinya Maeda <shinya@gitlab.com> | 2017-06-28 21:14:15 +0900 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2017-07-05 18:38:28 +0900 |
commit | 3a7176f2f2e9f29479e4e1ccc8d3be414afce89e (patch) | |
tree | 8996b6eb3bd3a56352093d14c4ff1b42115d7c71 /app/views | |
parent | 251a7c416cb8fdc3cb1722dab6194df7a9bde9e5 (diff) | |
download | gitlab-ce-3a7176f2f2e9f29479e4e1ccc8d3be414afce89e.tar.gz |
Remove _form.html.haml change
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/projects/pipeline_schedules/_form.html.haml | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/app/views/projects/pipeline_schedules/_form.html.haml b/app/views/projects/pipeline_schedules/_form.html.haml index 3857a59a043..0e600c59ef6 100644 --- a/app/views/projects/pipeline_schedules/_form.html.haml +++ b/app/views/projects/pipeline_schedules/_form.html.haml @@ -22,38 +22,6 @@ = f.label :ref, _('Target Branch'), class: 'label-light' = dropdown_tag(_("Select target branch"), options: { toggle_class: 'btn js-target-branch-dropdown', dropdown_class: 'git-revision-dropdown', title: _("Select target branch"), filter: true, placeholder: s_("OfSearchInADropdown|Filter"), data: { data: @project.repository.branch_names, default_branch: @project.default_branch } } ) = f.text_field :ref, value: @schedule.ref, id: 'schedule_ref', class: 'hidden', name: 'schedule[ref]', required: true - -# TODO: Test code - = @schedule.variables.inspect - - if @schedule.variables.present? - - @schedule.variables.each_with_index do |variable, i| - .form-group - .col-md-9 - %label.label-light Key - %input.form-control{:name => "schedule[variables_attributes][#{i}][key]", :type => "text", :value => variable.key}/ - %p.gl-field-error.hide This field is required. - %label.label-light Value - %input.form-control{:name => "schedule[variables_attributes][#{i}][value]", :type => "text", :value => variable.value}/ - %p.gl-field-error.hide This field is required. - - if @schedule.variables.count == 1 - - (1..1).each do |i| - .form-group - .col-md-9 - %label.label-light Key - %input.form-control{:name => "schedule[variables_attributes][#{i}][key]", :type => "text"}/ - %p.gl-field-error.hide This field is required. - %label.label-light Value - %input.form-control{:name => "schedule[variables_attributes][#{i}][value]", :type => "text"}/ - %p.gl-field-error.hide This field is required. - - else - - (0..0).each do |i| - .form-group - .col-md-9 - %label.label-light Key - %input.form-control{:name => "schedule[variables_attributes][#{i}][key]", :type => "text"}/ - %p.gl-field-error.hide This field is required. - %label.label-light Value - %input.form-control{:name => "schedule[variables_attributes][#{i}][value]", :type => "text"}/ - %p.gl-field-error.hide This field is required. .form-group .col-md-9 %label.label-light |