Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_form.html.haml « milestones « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91c161e860251423d44ff02138099a545f8b1c57 (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
= gitlab_ui_form_for [@project, @milestone], html: { class: 'milestone-form common-note-form js-quick-submit js-requires-input' } do |f|
  = form_errors(@milestone)
  - if @redirect_path.present?
    = f.hidden_field(:redirect_path, name: :redirect_path, id: :redirect_path, value: @redirect_path)
  .form-group
    = f.label :title, _('Title')
    = f.text_field :title, maxlength: 255, class: 'form-control gl-form-input', data: { qa_selector: 'milestone_title_field' }, required: true, autofocus: true
  = render 'shared/milestones/form_dates', f: f
  .form-group
    = f.label :description, _('Description')
    = 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',
                              supports_autocomplete: true,
                              placeholder: _('Write milestone description...')
      = render 'shared/notes/hints'
    .clearfix
    .error-alert

  - if @milestone.new_record?
    = f.submit _('Create milestone'), data: { qa_selector: 'create_milestone_button' }, class: 'gl-mr-2', pajamas_button: true
    = link_to _('Cancel'), project_milestones_path(@project), class: 'gl-button btn btn-default btn-cancel'
  - else
    = f.submit _('Save changes'), class: 'gl-mr-2', pajamas_button: true
    = link_to _('Cancel'), project_milestone_path(@project, @milestone), class: 'gl-button btn btn-default btn-cancel'