diff --git a/RIGS/templates/invoice_dashboard.html b/RIGS/templates/invoice_dashboard.html index 5086d555..eecbc415 100644 --- a/RIGS/templates/invoice_dashboard.html +++ b/RIGS/templates/invoice_dashboard.html @@ -1,5 +1,6 @@ {% extends 'base_rigs.html' %} +{% load humanize %} {% block content %}
@@ -31,7 +32,7 @@

Overview

Total Waiting
-

£{{ total_waiting|floatformat:2 }}

+

£{{ total_waiting|floatformat:"2g" }}

@@ -39,7 +40,7 @@
Total Waiting
Total Outstanding
-

£{{ total_outstanding|floatformat:2 }}

+

£{{ total_outstanding|floatformat:"2g" }}

@@ -71,7 +72,7 @@

Sources

{{ source.method }}
-

£{{ source.total|floatformat:2 }}

+

£{{ source.total|floatformat:"2g" }}

{% endfor %} @@ -85,7 +86,7 @@

Total

Total Income
-

£{{ total_income|floatformat:2 }}

+

£{{ total_income|floatformat:"2g" }}

@@ -98,7 +99,7 @@

Invoice Payment Time

Average Time to Pay
-

{{ mean_invoice_to_payment|floatformat:2 }} days

+

{{ mean_invoice_to_payment|floatformat:"2g" }} days