-
-
+
+
+
+ | {{ 'category'|_ }} |
+ {{ 'spent'|_ }} |
+
+
+
+ {% for cat in categories.getCategories %}
+ {% if loop.index > listLength %}
+
+ {% else %}
- | {{ 'categories'|_ }} |
- {{ 'spent'|_ }} |
-
-
-
- {% for cat in categories.getCategories %}
- {% if loop.index > listLength %}
-
- {% else %}
-
- {% endif %}
- |
- {{ cat.name }}
- |
- {{ cat.spent|formatAmount }} |
-
-
- |
-
- {% endfor %}
-
-
- {% if categories.getCategories.count > expenseTopLength %}
-
- |
- {{ trans('firefly.show_full_list',{number:incomeTopLength}) }}
- |
-
- {% endif %}
+ {% endif %}
+
+ {{ cat.name }}
+ |
+ {{ cat.spent|formatAmount }} |
+
+
+ |
+
+ {% endfor %}
+
+
+ {% if categories.getCategories.count > expenseTopLength %}
+
+ |
+ {{ trans('firefly.show_full_list',{number:incomeTopLength}) }}
+ |
+
+ {% endif %}
-
- | {{ 'sum'|_ }} |
- {{ categories.getTotal|formatAmount }} |
-
-
-
-
-
+
+ | {{ 'sum'|_ }} |
+ {{ categories.getTotal|formatAmount }} |
+
+
+
diff --git a/resources/views/reports/partials/income.twig b/resources/views/reports/partials/income.twig
index 6d47763b9f..3428b0a33a 100644
--- a/resources/views/reports/partials/income.twig
+++ b/resources/views/reports/partials/income.twig
@@ -1,46 +1,39 @@
-
-
-
-
-
- {% for income in incomes.getIncomes %}
- {% if loop.index > listLength %}
-
- {% else %}
-
- {% endif %}
-
- {{ income.name }}
- {% if income.count > 1 %}
-
-
- {{ income.count }} {{ 'transactions'|_|lower }}
-
-
-
- {% endif %}
- |
-
- {{ income.amount|formatAmount }} |
-
- {% endfor %}
-
-
- {% if incomes.getIncomes|length > listLength %}
-
- |
- {{ trans('firefly.show_full_list',{ number:listLength } ) }}
- |
-
- {% endif %}
+
+
+ {% for income in incomes.getIncomes %}
+ {% if loop.index > listLength %}
+
+ {% else %}
- | {{ 'sum'|_ }} |
- {{ incomes.getTotal|formatAmount }} |
-
-
-
-
-
+ {% endif %}
+
+ {{ income.name }}
+ {% if income.count > 1 %}
+
+
+ {{ income.count }} {{ 'transactions'|_|lower }}
+
+
+
+ {% endif %}
+ |
+
+ {{ income.amount|formatAmount }} |
+
+ {% endfor %}
+
+
+ {% if incomes.getIncomes|length > listLength %}
+
+ |
+ {{ trans('firefly.show_full_list',{ number:listLength } ) }}
+ |
+
+ {% endif %}
+
+ | {{ 'sum'|_ }} |
+ {{ incomes.getTotal|formatAmount }} |
+
+
+