debian-mirror-gitlab/app/views/shared/issuable/form/_contribution.html.haml

21 lines
831 B
Text
Raw Normal View History

2018-03-27 19:54:05 +05:30
- issuable = local_assigns.fetch(:issuable)
- form = local_assigns.fetch(:form)
- return unless issuable.is_a?(MergeRequest)
- return unless issuable.for_fork?
- return unless can?(current_user, :push_code, issuable.source_project)
%hr
2018-11-08 19:23:39 +05:30
.form-group.row
%label.col-form-label.col-sm-2
2018-03-27 19:54:05 +05:30
= _('Contribution')
.col-sm-10
2018-11-08 19:23:39 +05:30
.form-check.prepend-top-5
= form.check_box :allow_collaboration, disabled: !issuable.can_allow_collaboration?(current_user), class: 'form-check-input'
= form.label :allow_collaboration, class: 'form-check-label' do
= _('Allow commits from members who can merge to the target branch.')
= link_to 'About this feature', help_page_path('user/project/merge_requests/allow_collaboration')
.form-text.text-muted
= allow_collaboration_unavailable_reason(issuable)