summaryrefslogtreecommitdiff
path: root/app/views/projects/milestones/_form.html.haml
blob: ebd3229e42bef069770aa42e6c95cae1ccf9f0d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
= form_for [@project.namespace.becomes(Namespace), @project, @milestone],
           html: {class: 'milestone-form common-note-form js-quick-submit js-requires-input'},
           data: { markdown_version: @milestone.cached_markdown_version }  do |f|
  = form_errors(@milestone)
  .row
    .col-md-6
      .form-group.row
        = f.label :title, "Title", class: "col-form-label col-sm-2"
        .col-sm-10
          = f.text_field :title, maxlength: 255, class: "qa-milestone-title form-control", required: true, autofocus: true
      .form-group.row.milestone-description
        = f.label :description, "Description", class: "col-form-label col-sm-2"
        .col-sm-10
          = render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project) } do
            = render 'projects/zen', f: f, attr: :description, classes: 'qa-milestone-description note-textarea', placeholder: 'Write milestone description...'
            = render 'shared/notes/hints'
          .clearfix
          .error-alert
    = render "shared/milestones/form_dates", f: f

  .form-actions
    - if @milestone.new_record?
      = f.submit 'Create milestone', class: "btn-success btn qa-milestone-create-button"
      = link_to "Cancel", project_milestones_path(@project), class: "btn btn-cancel"
    - else
      = f.submit 'Save changes', class: "btn-success btn"
      = link_to "Cancel", project_milestone_path(@project, @milestone), class: "btn btn-cancel"