1- form = local_assigns.fetch(:form)
2
3.form-group
4  %b= s_('ProjectSettings|Merge suggestions')
5  %p.text-secondary
6    - configure_the_commit_message_for_applied_suggestions_help_link_url = help_page_path('user/project/merge_requests/reviews/suggestions.md', anchor: 'configure-the-commit-message-for-applied-suggestions')
7    - configure_the_commit_message_for_applied_suggestions_help_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: configure_the_commit_message_for_applied_suggestions_help_link_url }
8    = s_('ProjectSettings|The commit message used when applying merge request suggestions. %{link_start}Learn more about suggestions.%{link_end}').html_safe % { link_start: configure_the_commit_message_for_applied_suggestions_help_link_start, link_end: '</a>'.html_safe }
9  .mb-2
10    = form.text_field :suggestion_commit_message, class: 'form-control mb-2', placeholder: Gitlab::Suggestions::CommitMessage::DEFAULT_SUGGESTION_COMMIT_MESSAGE
11    %p.form-text.text-muted
12      = s_('ProjectSettings|Supported variables:')
13      - Gitlab::Suggestions::CommitMessage::PLACEHOLDERS.keys.each do |placeholder|
14        %code
15          = "%{#{placeholder}}".html_safe
16