2022-08-27 11:52:29 +05:30
|
|
|
= gitlab_ui_form_for [@group, @milestone], html: { class: 'milestone-form common-note-form js-quick-submit js-requires-input' } do |f|
|
2022-10-11 01:57:18 +05:30
|
|
|
= form_errors(@milestone)
|
2021-09-30 23:02:18 +05:30
|
|
|
.form-group.row
|
|
|
|
.col-form-label.col-sm-2
|
|
|
|
= f.label :title, _("Title")
|
|
|
|
.col-sm-10
|
|
|
|
= f.text_field :title, maxlength: 255, class: "form-control", data: { qa_selector: "milestone_title_field" }, required: true, autofocus: true
|
|
|
|
= render "shared/milestones/form_dates", f: f
|
|
|
|
.form-group.row.milestone-description
|
|
|
|
.col-form-label.col-sm-2
|
|
|
|
= f.label :description, _("Description")
|
|
|
|
.col-sm-10
|
|
|
|
= render layout: 'shared/md_preview', locals: { url: group_preview_markdown_path } do
|
|
|
|
= render 'shared/zen', f: f, attr: :description,
|
|
|
|
classes: 'note-textarea',
|
|
|
|
qa_selector: 'milestone_description_field',
|
|
|
|
supports_autocomplete: true,
|
|
|
|
placeholder: _('Write milestone description...')
|
|
|
|
.clearfix
|
|
|
|
.error-alert
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
.form-actions
|
|
|
|
- if @milestone.new_record?
|
2022-11-25 23:54:43 +05:30
|
|
|
= f.submit _('Create milestone'), data: { qa_selector: "create_milestone_button" }, pajamas_button: true
|
2023-03-04 22:38:38 +05:30
|
|
|
= render Pajamas::ButtonComponent.new(href: group_milestones_path(@group)) do
|
|
|
|
= _("Cancel")
|
2017-09-10 17:25:29 +05:30
|
|
|
- else
|
2022-11-25 23:54:43 +05:30
|
|
|
= f.submit _('Update milestone'), pajamas_button: true
|
2023-03-04 22:38:38 +05:30
|
|
|
= render Pajamas::ButtonComponent.new(href: group_milestone_path(@group, @milestone)) do
|
|
|
|
= _("Cancel")
|