From 5f19cb1c0c07a4c039eb56e5747aae50268b25a7 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 29 Apr 2017 08:56:08 +0200 Subject: [PATCH] Fix canvas things. --- resources/views/accounts/show.twig | 26 +++++++++---------- resources/views/bills/show.twig | 2 +- resources/views/budgets/show.twig | 14 +++++----- resources/views/categories/show.twig | 6 ++--- resources/views/index.twig | 12 ++++----- resources/views/piggy-banks/show.twig | 2 +- resources/views/reports/budget/month.twig | 10 +++---- resources/views/reports/category/month.twig | 2 +- resources/views/reports/default/month.twig | 2 +- .../views/reports/default/multi-year.twig | 10 +++---- resources/views/reports/default/year.twig | 8 +++--- resources/views/reports/tag/month.twig | 2 +- 12 files changed, 48 insertions(+), 48 deletions(-) diff --git a/resources/views/accounts/show.twig b/resources/views/accounts/show.twig index afcae2a2e0..bedb9ee721 100644 --- a/resources/views/accounts/show.twig +++ b/resources/views/accounts/show.twig @@ -28,7 +28,7 @@
- +
@@ -40,8 +40,8 @@

{{ 'expenses_by_category'|_ }}

-
- +
+
@@ -52,8 +52,8 @@

{{ 'expenses_by_budget'|_ }}

-
- +
+
@@ -64,8 +64,8 @@

{{ 'income_by_category'|_ }}

-
- +
+
@@ -149,13 +149,13 @@ // uri's for charts: var chartUri = '{{ chartUri }}'; {% if start and end %} - var incomeCategoryUri = '{{ route('chart.account.income-category', [account.id, start.format('Ymd'), end.format('Ymd')]) }}'; - var expenseCategoryUri = '{{ route('chart.account.expense-category', [account.id, start.format('Ymd'), end.format('Ymd')]) }}'; - var expenseBudgetUri = '{{ route('chart.account.expense-budget', [account.id, start.format('Ymd'), end.format('Ymd')]) }}'; + var incomeCategoryUri = '{{ route('chart.account.income-category', [account.id, start.format('Ymd'), end.format('Ymd')]) }}'; + var expenseCategoryUri = '{{ route('chart.account.expense-category', [account.id, start.format('Ymd'), end.format('Ymd')]) }}'; + var expenseBudgetUri = '{{ route('chart.account.expense-budget', [account.id, start.format('Ymd'), end.format('Ymd')]) }}'; {% else %} - var incomeCategoryUri = '{{ route('chart.account.income-category', [account.id, 'all', 'all']) }}'; - var expenseCategoryUri = '{{ route('chart.account.expense-category', [account.id, 'all', 'all']) }}'; - var expenseBudgetUri = '{{ route('chart.account.expense-budget', [account.id, 'all', 'all']) }}'; + var incomeCategoryUri = '{{ route('chart.account.income-category', [account.id, 'all', 'all']) }}'; + var expenseCategoryUri = '{{ route('chart.account.expense-category', [account.id, 'all', 'all']) }}'; + var expenseBudgetUri = '{{ route('chart.account.expense-budget', [account.id, 'all', 'all']) }}'; {% endif %} diff --git a/resources/views/bills/show.twig b/resources/views/bills/show.twig index 9227d99d46..2b01b46c29 100644 --- a/resources/views/bills/show.twig +++ b/resources/views/bills/show.twig @@ -93,7 +93,7 @@

{{ 'chart'|_ }}

- +
diff --git a/resources/views/budgets/show.twig b/resources/views/budgets/show.twig index eddccefe1d..3e598b1d6e 100644 --- a/resources/views/budgets/show.twig +++ b/resources/views/budgets/show.twig @@ -29,7 +29,7 @@
- +
@@ -42,8 +42,8 @@

{{ 'expenses_by_category'|_ }}

-
- +
+
@@ -54,8 +54,8 @@

{{ 'expenses_by_asset_account'|_ }}

-
- +
+
@@ -66,8 +66,8 @@

{{ 'expenses_by_expense_account'|_ }}

-
- +
+
diff --git a/resources/views/categories/show.twig b/resources/views/categories/show.twig index a158564b56..186ad996de 100644 --- a/resources/views/categories/show.twig +++ b/resources/views/categories/show.twig @@ -16,7 +16,7 @@
- +
@@ -28,7 +28,7 @@
- +
@@ -43,7 +43,7 @@
- +
diff --git a/resources/views/index.twig b/resources/views/index.twig index 2a62729913..7dd28358b9 100644 --- a/resources/views/index.twig +++ b/resources/views/index.twig @@ -28,7 +28,7 @@

{{ 'budgetsAndSpending'|_ }}

- +
@@ -38,7 +38,7 @@
- +
@@ -51,8 +51,8 @@
-
- +
+
@@ -114,7 +114,7 @@
- +
@@ -125,7 +125,7 @@
- +
{% endif %} diff --git a/resources/views/piggy-banks/show.twig b/resources/views/piggy-banks/show.twig index eace5c8d03..4ad481467c 100644 --- a/resources/views/piggy-banks/show.twig +++ b/resources/views/piggy-banks/show.twig @@ -12,7 +12,7 @@

{{ 'events'|_ }}

- +
diff --git a/resources/views/reports/budget/month.twig b/resources/views/reports/budget/month.twig index 4c74d0b0a5..4e2a405763 100644 --- a/resources/views/reports/budget/month.twig +++ b/resources/views/reports/budget/month.twig @@ -76,8 +76,8 @@

{{ 'expense_per_budget'|_ }}

-
- +
+
-
- +
+
diff --git a/resources/views/reports/category/month.twig b/resources/views/reports/category/month.twig index 697be04d70..75898d2eed 100644 --- a/resources/views/reports/category/month.twig +++ b/resources/views/reports/category/month.twig @@ -151,7 +151,7 @@

{{ 'income_and_expenses'|_ }}

- +
diff --git a/resources/views/reports/default/month.twig b/resources/views/reports/default/month.twig index 6ff31d8217..5fc9bb6655 100644 --- a/resources/views/reports/default/month.twig +++ b/resources/views/reports/default/month.twig @@ -13,7 +13,7 @@

{{ 'accountBalances'|_ }}

- +
diff --git a/resources/views/reports/default/multi-year.twig b/resources/views/reports/default/multi-year.twig index 90a03fee2b..303a8e4cdb 100644 --- a/resources/views/reports/default/multi-year.twig +++ b/resources/views/reports/default/multi-year.twig @@ -13,7 +13,7 @@

{{ 'incomeVsExpenses'|_ }}

- +
@@ -23,7 +23,7 @@

{{ 'incomeVsExpenses'|_ }}

- +
@@ -94,7 +94,7 @@

{{ 'net_worth'|_ }}

- +
@@ -127,7 +127,7 @@

{{ 'chart'|_ }}

- +
@@ -175,7 +175,7 @@

{{ 'chart'|_ }}

- +
diff --git a/resources/views/reports/default/year.twig b/resources/views/reports/default/year.twig index b271662b3c..03bc5bdb7c 100644 --- a/resources/views/reports/default/year.twig +++ b/resources/views/reports/default/year.twig @@ -13,7 +13,7 @@

{{ 'incomeVsExpenses'|_ }}

- +
@@ -88,7 +88,7 @@

{{ 'net_worth'|_ }}

- +
@@ -120,7 +120,7 @@

{{ 'chart'|_ }}

- +
@@ -168,7 +168,7 @@

{{ 'chart'|_ }}

- +
diff --git a/resources/views/reports/tag/month.twig b/resources/views/reports/tag/month.twig index f160a4686a..3828b773f4 100644 --- a/resources/views/reports/tag/month.twig +++ b/resources/views/reports/tag/month.twig @@ -173,7 +173,7 @@

{{ 'income_and_expenses'|_ }}

- +