debian-mirror-gitlab/app/views/projects/milestones/_form.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1.7 KiB
Text
Raw Normal View History

2023-05-27 22:25:52 +05:30
= gitlab_ui_form_for [@project, @milestone], html: { class: 'milestone-form common-note-form js-quick-submit js-requires-input' } do |f|
2022-10-11 01:57:18 +05:30
= form_errors(@milestone)
2023-07-09 08:55:56 +05:30
- if @conflict
= render 'shared/model_version_conflict', model_name: _('milestone'), link_path: project_milestone_path(@project, @milestone)
2022-11-25 23:54:43 +05:30
- if @redirect_path.present?
= f.hidden_field(:redirect_path, name: :redirect_path, id: :redirect_path, value: @redirect_path)
2023-05-27 22:25:52 +05:30
.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
2021-09-30 23:02:18 +05:30
= render 'shared/milestones/form_dates', f: f
2023-05-27 22:25:52 +05:30
.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
2014-09-02 18:07:02 +05:30
2023-07-09 08:55:56 +05:30
= f.hidden_field :lock_version
2023-05-27 22:25:52 +05:30
- 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'