gitlab-org--gitlab-foss/app/views/shared/_commit_message_container.h...

27 lines
1.2 KiB
Plaintext
Raw Normal View History

.form-group.row.commit_message-group
- nonce = SecureRandom.hex
- descriptions = local_assigns.slice(:message_with_description, :message_without_description)
= label_tag "commit_message-#{nonce}", class: 'col-form-label col-sm-2' do
2017-06-09 13:08:39 +00:00
#{ _('Commit message') }
2014-09-26 22:41:17 +00:00
.col-sm-10
.commit-message-container
.max-width-marker
= text_area_tag 'commit_message',
(params[:commit_message] || local_assigns[:text] || local_assigns[:placeholder]),
class: 'form-control gl-form-input js-commit-message',
placeholder: local_assigns[:placeholder],
data: descriptions,
'data-qa-selector': 'commit_message_field',
required: true, rows: (local_assigns[:rows] || 3),
id: "commit_message-#{nonce}"
2014-09-26 22:41:17 +00:00
- if local_assigns[:hint]
%p.hint
= _('Try to keep the first line under 52 characters and the others under 72.')
- if descriptions.present?
2017-02-10 17:21:20 +00:00
.hint.js-with-description-hint
= link_to "#", class: "js-with-description-link" do
= _('Include description in commit message')
2018-04-24 21:40:46 +00:00
.hint.js-without-description-hint.hide
= link_to "#", class: "js-without-description-link" do
= _("Don't include description in commit message")