diff options
-rw-r--r-- | app/views/timelog/bulk_edit.html.erb | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/app/views/timelog/bulk_edit.html.erb b/app/views/timelog/bulk_edit.html.erb index 5d82c54d5..bb7caa14b 100644 --- a/app/views/timelog/bulk_edit.html.erb +++ b/app/views/timelog/bulk_edit.html.erb @@ -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> @@ -115,4 +120,4 @@ } ); <% end %> -<% end %>
\ No newline at end of file +<% end %> |