Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_merge_request_squash_commit_template.html.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d1b89bea830ef91fe61b5b04cafceb638706db6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- form = local_assigns.fetch(:form)

.form-group
  %b= s_('ProjectSettings|Squash commit message template')
  %p.text-secondary
    = s_('ProjectSettings|The commit message used when squashing commits.')
  .mb-2
    = form.text_area :squash_commit_template_or_default, class: 'form-control gl-form-input', rows: 8, maxlength: Project::MAX_COMMIT_TEMPLATE_LENGTH, placeholder: s_('ProjectSettings|The default template will be applied on save.')
    %p.form-text.text-muted
      = s_('ProjectSettings|Leave empty to use default template.')
      = sprintf(s_('ProjectSettings|Maximum %{maxLength} characters.'), { maxLength: Project::MAX_COMMIT_TEMPLATE_LENGTH })
      - configure_the_squash_commit_message_help_link_url = help_page_path('user/project/merge_requests/commit_templates.md')
      - configure_the_squash_commit_message_help_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: configure_the_squash_commit_message_help_link_url }
      = s_('ProjectSettings|%{link_start}What variables can I use?%{link_end}').html_safe % { link_start: configure_the_squash_commit_message_help_link_start, link_end: '</a>'.html_safe }