2019-01-16 07:09:29 -05:00
|
|
|
= form_for [@group, @milestone], html: { class: 'milestone-form common-note-form js-quick-submit js-requires-input' } do |f|
|
2019-01-23 13:17:09 -05:00
|
|
|
= form_errors(@milestone)
|
2017-07-07 11:08:49 -04:00
|
|
|
.row
|
|
|
|
.col-md-6
|
2018-04-12 16:11:22 -04:00
|
|
|
.form-group.row
|
2019-01-23 13:17:09 -05:00
|
|
|
.col-form-label.col-sm-2
|
2021-04-19 14:09:09 -04:00
|
|
|
= f.label :title, _("Title")
|
2017-07-07 11:08:49 -04:00
|
|
|
.col-sm-10
|
2020-07-10 17:09:29 -04:00
|
|
|
= f.text_field :title, maxlength: 255, class: "form-control", data: { qa_selector: "milestone_title_field" }, required: true, autofocus: true
|
2018-04-12 16:11:22 -04:00
|
|
|
.form-group.row.milestone-description
|
2019-01-23 13:17:09 -05:00
|
|
|
.col-form-label.col-sm-2
|
2021-04-19 14:09:09 -04:00
|
|
|
= f.label :description, _("Description")
|
2017-07-07 11:08:49 -04:00
|
|
|
.col-sm-10
|
2020-06-11 11:08:36 -04:00
|
|
|
= render layout: 'shared/md_preview', locals: { url: group_preview_markdown_path } do
|
2021-05-06 08:10:38 -04:00
|
|
|
= render 'shared/zen', f: f, attr: :description,
|
|
|
|
classes: 'note-textarea',
|
|
|
|
qa_selector: 'milestone_description_field',
|
|
|
|
supports_autocomplete: true,
|
|
|
|
placeholder: _('Write milestone description...')
|
2019-01-23 13:17:09 -05:00
|
|
|
.clearfix
|
|
|
|
.error-alert
|
2017-07-07 11:08:49 -04:00
|
|
|
= render "shared/milestones/form_dates", f: f
|
|
|
|
|
|
|
|
.form-actions
|
|
|
|
- if @milestone.new_record?
|
2021-04-19 14:09:09 -04:00
|
|
|
= f.submit _('Create milestone'), class: "btn-confirm gl-button btn", data: { qa_selector: "create_milestone_button" }
|
|
|
|
= link_to _("Cancel"), group_milestones_path(@group), class: "btn gl-button btn-cancel"
|
2017-07-07 11:08:49 -04:00
|
|
|
- else
|
2021-04-19 14:09:09 -04:00
|
|
|
= f.submit _('Update milestone'), class: "btn-confirm gl-button btn"
|
|
|
|
= link_to _("Cancel"), group_milestone_path(@group, @milestone), class: "btn gl-button btn-cancel"
|