1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

Show user name in time entry bulk edit (#3800).

Patch by Kevin Fischer.

git-svn-id: http://svn.redmine.org/redmine/trunk@19654 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2020-04-05 08:35:59 +00:00
parent 9fcfeb1b36
commit c01dad4038

View File

@ -18,8 +18,13 @@
<ul id="bulk-selection">
<% @time_entries.each do |entry| %>
<%= content_tag 'li',
link_to("#{format_date(entry.spent_on)} - #{entry.project}: #{l(:label_f_hour_plural, :value => entry.hours)}", edit_time_entry_path(entry)) %>
<%=
content_tag 'li',
link_to(
"#{format_date(entry.spent_on)} - #{entry.project}: #{l(:label_f_hour_plural, :value => entry.hours)} (#{entry.user})",
edit_time_entry_path(entry)
)
%>
<% end %>
</ul>