summaryrefslogtreecommitdiff
path: root/app/views/projects/milestones/_form.html.haml
blob: a21f519da0e83814521a6215d723d76fc30e7789 (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
28
= form_for [@project, @milestone],
           html: { class: 'milestone-form common-note-form js-quick-submit js-requires-input' } do |f|
  = form_errors(@milestone)
  .row
    .col-md-6
      .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
      .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: preview_markdown_path(@project) } do
            = render 'shared/zen', f: f, attr: :description, classes: 'note-textarea', qa_selector: 'milestone_description_field', 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', data: { qa_selector: 'create_milestone_button' }
      = link_to _('Cancel'), project_milestones_path(@project), class: 'gl-button btn btn-cancel'
    - else
      = f.submit _('Save changes'), class: 'btn-success btn'
      = link_to _('Cancel'), project_milestone_path(@project, @milestone), class: 'gl-button btn btn-cancel'