86 lines
4 KiB
Text
86 lines
4 KiB
Text
- form = local_assigns.fetch(:f)
|
|
- commits = local_assigns[:commits]
|
|
- project = @target_project || @project
|
|
- presenter = local_assigns.fetch(:presenter, nil)
|
|
|
|
= form_errors(issuable)
|
|
|
|
- if @conflict
|
|
= render 'shared/global_alert',
|
|
variant: :danger,
|
|
dismissible: false,
|
|
is_contained: true,
|
|
alert_class: 'gl-mb-5' do
|
|
.gl-alert-body
|
|
Someone edited the #{issuable.class.model_name.human.downcase} the same time you did.
|
|
Please check out
|
|
= link_to "the #{issuable.class.model_name.human.downcase}", polymorphic_path([@project, issuable]), target: "_blank", rel: 'noopener noreferrer'
|
|
and make sure your changes will not unintentionally remove theirs
|
|
|
|
= render 'shared/issuable/form/branch_chooser', issuable: issuable, form: form
|
|
|
|
.form-group.row
|
|
= form.label :title, class: 'col-form-label col-sm-2'
|
|
|
|
= render 'shared/issuable/form/title', issuable: issuable, form: form, has_wip_commits: commits && commits.detect(&:work_in_progress?)
|
|
#js-suggestions{ data: { project_path: @project.full_path } }
|
|
|
|
= render 'shared/issuable/form/type_selector', issuable: issuable, form: form
|
|
|
|
= render 'shared/form_elements/description', model: issuable, form: form, project: project
|
|
|
|
= render 'shared/issuable/form/metadata', issuable: issuable, form: form, project: project, presenter: presenter
|
|
|
|
= render 'shared/issuable/form/merge_params', issuable: issuable, project: project
|
|
|
|
= render 'shared/issuable/form/contribution', issuable: issuable, form: form
|
|
|
|
- if @merge_request_to_resolve_discussions_of
|
|
.form-group.row
|
|
.col-sm-10.offset-sm-2
|
|
= sprite_icon('information-o')
|
|
- if @merge_request_to_resolve_discussions_of.discussions_can_be_resolved_by?(current_user)
|
|
= hidden_field_tag 'merge_request_to_resolve_discussions_of', @merge_request_to_resolve_discussions_of.iid
|
|
- if @discussion_to_resolve
|
|
= hidden_field_tag 'discussion_to_resolve', @discussion_to_resolve.id
|
|
Creating this issue will resolve the thread in
|
|
- else
|
|
Creating this issue will resolve all threads in
|
|
= link_to_discussions_to_resolve(@merge_request_to_resolve_discussions_of, @discussion_to_resolve)
|
|
- else
|
|
The
|
|
= @discussion_to_resolve ? 'thread' : 'threads'
|
|
at
|
|
= link_to_discussions_to_resolve(@merge_request_to_resolve_discussions_of, @discussion_to_resolve)
|
|
will stay unresolved. Ask someone with permission to resolve
|
|
= @discussion_to_resolve ? 'it.' : 'them.'
|
|
|
|
- is_footer = !(issuable.is_a?(MergeRequest) && issuable.new_record?)
|
|
.row-content-block{ class: (is_footer ? "footer-block" : "middle-block") }
|
|
- if !issuable.persisted? && !issuable.project.empty_repo? && (guide_url = issuable.project.present.contribution_guide_path)
|
|
.gl-mb-5
|
|
Please review the
|
|
%strong= link_to('contribution guidelines', guide_url)
|
|
for this project.
|
|
|
|
- if issuable.new_record?
|
|
= form.submit "#{_('Create')} #{issuable.class.model_name.human.downcase}", class: 'gl-button btn btn-confirm gl-mr-2', data: { qa_selector: 'issuable_create_button' }
|
|
- else
|
|
= form.submit _('Save changes'), class: 'gl-button btn btn-confirm gl-mr-2'
|
|
|
|
- if issuable.new_record?
|
|
= link_to _('Cancel'), polymorphic_path([@project, issuable.class]), class: 'btn gl-button btn-default'
|
|
- else
|
|
= link_to _('Cancel'), polymorphic_path([@project, issuable]), class: 'gl-button btn btn-default'
|
|
- if can?(current_user, :"destroy_#{issuable.to_ability_name}", @project)
|
|
= link_to 'Delete', polymorphic_path([@project, issuable], params: { destroy_confirm: true }), data: { confirm: _('%{issuableType} will be removed! Are you sure?') % { issuableType: issuable.human_class_name } }, method: :delete, class: 'btn gl-button btn-danger btn-danger-secondary gl-float-right'
|
|
|
|
= render_if_exists 'shared/issuable/remove_approver'
|
|
|
|
- if issuable.respond_to?(:issue_type)
|
|
= form.hidden_field :issue_type
|
|
|
|
= form.hidden_field :lock_version
|
|
|
|
- if @vulnerability_id
|
|
= hidden_field_tag 'vulnerability_id', @vulnerability_id
|