diff options
author | Jean-Baptiste Barth <jeanbaptiste.barth@gmail.com> | 2014-09-09 03:53:25 +0000 |
---|---|---|
committer | Jean-Baptiste Barth <jeanbaptiste.barth@gmail.com> | 2014-09-09 03:53:25 +0000 |
commit | 1612da75d1be4cbb8ee4bf340d61f8da5b341192 (patch) | |
tree | a28f95ae5afa2db6066d126147bf0ee22758e65c /app/views/issues/_history.html.erb | |
parent | 11855f6861f1c362982504091ae6d1cc9f968dfe (diff) | |
download | redmine-1612da75d1be4cbb8ee4bf340d61f8da5b341192.tar.gz redmine-1612da75d1be4cbb8ee4bf340d61f8da5b341192.zip |
Mark private notes more clearly (#16240).
Contributed by Jan Schulz-Hofen.
git-svn-id: http://svn.redmine.org/redmine/trunk@13367 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/_history.html.erb')
-rw-r--r-- | app/views/issues/_history.html.erb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/issues/_history.html.erb b/app/views/issues/_history.html.erb index 94d98ccc7..3747e8d5f 100644 --- a/app/views/issues/_history.html.erb +++ b/app/views/issues/_history.html.erb @@ -4,7 +4,8 @@ <div id="note-<%= journal.indice %>"> <h4><%= link_to "##{journal.indice}", {:anchor => "note-#{journal.indice}"}, :class => "journal-link" %> <%= avatar(journal.user, :size => "24") %> - <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %></h4> + <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %> + <%= content_tag('span', l(:field_is_private), :class => 'private') if journal.private_notes? %></h4> <% if journal.details.any? %> <ul class="details"> |