From 4670426e4e6fcfd4df5d78746c023b5e77532b46 2007-07-14 19:07:35 From: Jean-Philippe Lang Date: 2007-07-14 19:07:35 Subject: [PATCH] Hours displayed using %.2f on time report. git-svn-id: http://redmine.rubyforge.org/svn/trunk@588 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/timelog/_report_criteria.rhtml b/app/views/timelog/_report_criteria.rhtml index e4f5fa3..0b7e91c 100644 --- a/app/views/timelog/_report_criteria.rhtml +++ b/app/views/timelog/_report_criteria.rhtml @@ -6,7 +6,7 @@ <% hours_for_value = select_hours(hours, criterias[level], value.id) %> <% @periods.each do |period| %> <% sum = sum_hours(select_hours(hours_for_value, @columns, period.to_s)) %> - <%= sum > 0 ? sum : "-" %> + <%= sum > 0 ? "%.2f" % sum : "-" %> <% end %> <% if criterias.length > level+1 %>