diff --git a/app/views/deliverables/_finances.html.erb b/app/views/deliverables/_finances.html.erb index 1ea935d..7a3e90d 100644 --- a/app/views/deliverables/_finances.html.erb +++ b/app/views/deliverables/_finances.html.erb @@ -2,7 +2,7 @@ <%= l(:text_deliverable_spending_summary, :spent => content_tag(:span, h(number_to_currency(deliverable.labor_budget_spent, :precision => Deliverable::ViewPrecision)), :class => 'spent'), :total => content_tag(:span, h(number_to_currency(deliverable.labor_budget_total, :precision => Deliverable::ViewPrecision)), :class => 'total'), - :hours => content_tag(:span, h(deliverable.labor_hours_spent_total), :class => 'hours')) %> + :hours => content_tag(:span, h(number_with_precision(deliverable.labor_hours_spent_total, :precision => Deliverable::ViewPrecision)), :class => 'hours')) %>

<%= h(deliverable.title) %>