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:
parent
9fcfeb1b36
commit
c01dad4038
@ -18,8 +18,13 @@
|
|||||||
|
|
||||||
<ul id="bulk-selection">
|
<ul id="bulk-selection">
|
||||||
<% @time_entries.each do |entry| %>
|
<% @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 %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user