Merge pull request #6774 from cirosantilli/issue-form-rename-fields

Rename issue form tags Subject -> Title and Details -> Description
This commit is contained in:
Dmitriy Zaporozhets 2014-04-15 09:39:29 +03:00
commit 0d3ba71bcb
1 changed files with 2 additions and 2 deletions

View File

@ -13,11 +13,11 @@
%br
.form-group
= f.label :title, class: 'control-label' do
%strong= "Subject *"
%strong= 'Title *'
.col-sm-10
= f.text_field :title, maxlength: 255, class: "form-control js-gfm-input", autofocus: true, required: true
.form-group
= f.label :description, "Details", class: 'control-label'
= f.label :description, 'Description', class: 'control-label'
.col-sm-10
= f.text_area :description, class: "form-control js-gfm-input", rows: 14
%p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.