diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2018-12-16 07:00:11 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2018-12-16 07:00:11 +0000 |
commit | fee009f04fbb9d5a6550e54634cb25393d69f919 (patch) | |
tree | 4da1be60a1a93b5ff819589781f3f4d7c4fb3d3a /app/views/issues | |
parent | 27c2d2e8f93ff65fa0619597f4ecfe256fc6c02c (diff) | |
download | redmine-fee009f04fbb9d5a6550e54634cb25393d69f919.tar.gz redmine-fee009f04fbb9d5a6550e54634cb25393d69f919.zip |
Ability to add private comments from the issue bulk edit page (#22368).
git-svn-id: http://svn.redmine.org/redmine/trunk@17744 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/bulk_edit.html.erb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/views/issues/bulk_edit.html.erb b/app/views/issues/bulk_edit.html.erb index 7e10d03b6..097e14e6f 100644 --- a/app/views/issues/bulk_edit.html.erb +++ b/app/views/issues/bulk_edit.html.erb @@ -194,6 +194,13 @@ <legend><%= l(:field_notes) %></legend> <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %> <%= wikitoolbar_for 'notes' %> + +<% if @safe_attributes.include?('private_notes') %> + <label class="inline"> + <%= check_box_tag 'issue[private_notes]', 1, false %> + <%= l(:field_private_notes) %> + </label> +<% end %> </fieldset> </div> |