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