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

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

20 lines
985 B
Text
Raw Normal View History

2018-03-27 19:54:05 +05:30
- issuable = local_assigns.fetch(:issuable)
- form = local_assigns.fetch(:form)
2022-06-21 17:19:12 +05:30
- contribution_help_link = help_page_path('user/project/merge_requests/allow_collaboration')
- contribution_help_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: contribution_help_link }
2018-03-27 19:54:05 +05:30
- 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
2022-06-21 17:19:12 +05:30
%label.col-form-label.col-sm-2.pt-sm-0
2018-03-27 19:54:05 +05:30
= _('Contribution')
.col-sm-10
2022-06-21 17:19:12 +05:30
= form.gitlab_ui_checkbox_component :allow_collaboration,
_('Allow commits from members who can merge to the target branch. %{link_start}About this feature.%{link_end}').html_safe % { link_start: contribution_help_link_start, link_end: '</a>'.html_safe },
checkbox_options: { disabled: !issuable.can_allow_collaboration?(current_user) },
help_text: allow_collaboration_unavailable_reason(issuable)