diff --git a/public/app/js/templates/dashboard.html b/public/app/js/templates/dashboard.html
index ab7afc45..4b7f1ef6 100644
--- a/public/app/js/templates/dashboard.html
+++ b/public/app/js/templates/dashboard.html
@@ -15,10 +15,6 @@
data-ng-click="after()"
data-ng-class="{'disabled': period_offset == dates_salaries.length}">next
-
@@ -74,14 +70,32 @@
Account |
- Savable |
- Income |
+ Left |
+ Total |
Percentage |
Progress |
+
+ Balance
+ |
+
+ {{balance.buckets[1].raw_total - balance.buckets[0].raw_total | number:2}}{{budget[0].currency}}
+ |
+
+ {{balance.buckets[1].raw_total | number:2}}{{budget[0].currency}}
+ |
+
+ {{( ( balance.buckets[1].raw_total - balance.buckets[0].raw_total ) / balance.buckets[1].raw_total ) * 100 | number:2}}%
+ |
+
+
+ |
+
+
Potential savings
|
@@ -89,10 +103,10 @@
{{balance.buckets[1].raw_total - total_budget - total_unbudgeted | number:2}}{{budget[0].currency}}
- {{balance.buckets[1].raw_total | number:2}}{{budget[0].currency}}
+ {{balance.buckets[1].raw_total - total_budget | number:2}}{{budget[0].currency}}
|
- {{( ( balance.buckets[1].raw_total - total_budget - total_unbudgeted ) / balance.buckets[1].raw_total ) * 100 | number:2}}%
+ {{( ( balance.buckets[1].raw_total - total_budget - total_unbudgeted ) / ( balance.buckets[1].raw_total - total_budget ) ) * 100 | number:2}}%
|
|