gitlab-org--gitlab-foss/app/views/projects/milestones/_form.html.haml

26 lines
1.3 KiB
Plaintext
Raw Normal View History

2016-04-05 09:42:38 +00:00
= form_for [@project.namespace.becomes(Namespace), @project, @milestone], html: {class: 'form-horizontal milestone-form common-note-form js-quick-submit js-requires-input'} do |f|
= form_errors(@milestone)
2012-04-08 21:28:58 +00:00
.row
.col-md-6
.form-group
= f.label :title, "Title", class: "control-label"
.col-sm-10
= f.text_field :title, maxlength: 255, class: "form-control", required: true, autofocus: true
.form-group.milestone-description
= f.label :description, "Description", class: "control-label"
.col-sm-10
= render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project) } do
= render 'projects/zen', f: f, attr: :description, classes: 'note-textarea', placeholder: 'Write milestone description...'
= render 'projects/notes/hints'
.clearfix
.error-alert
2016-11-15 17:48:30 +00:00
= render "shared/milestones/form_dates", f: f
2012-04-08 21:28:58 +00:00
2012-04-10 05:51:08 +00:00
.form-actions
2012-04-08 21:28:58 +00:00
- if @milestone.new_record?
= f.submit 'Create milestone', class: "btn-create btn"
= link_to "Cancel", namespace_project_milestones_path(@project.namespace, @project), class: "btn btn-cancel"
- else
2013-01-29 20:18:19 +00:00
= f.submit 'Save changes', class: "btn-save btn"
= link_to "Cancel", namespace_project_milestone_path(@project.namespace, @project, @milestone), class: "btn btn-cancel"