diff --git a/resources/views/list/bills.twig b/resources/views/list/bills.twig
index ba83739b49..7b95561765 100644
--- a/resources/views/list/bills.twig
+++ b/resources/views/list/bills.twig
@@ -35,7 +35,7 @@
{{ entry.amount_max|formatAmount }}
|
- {% if entry.lastFoundMatch %}
+ {% if not entry.lastFoundMatch.isFuture %}
{{ entry.lastFoundMatch.formatLocalized(monthAndDayFormat) }}
|
@@ -45,7 +45,7 @@
{% endif %}
- {% if entry.nextExpectedMatch %}
+ {% if entry.nextExpectedMatch.isFuture %}
{{ entry.nextExpectedMatch.formatLocalized(monthAndDayFormat) }}
|
diff --git a/resources/views/reports/partials/budgets.twig b/resources/views/reports/partials/budgets.twig
index 19122b4cd7..076487a1e0 100644
--- a/resources/views/reports/partials/budgets.twig
+++ b/resources/views/reports/partials/budgets.twig
@@ -47,7 +47,9 @@
{% endif %}
- {{ budgetLine.getLeft|formatAmount }}
+ {% if(budgetLine.getOverspent == 0) %}
+ {{ budgetLine.getLeft|formatAmount }}
+ {% endif %}
|
{% if budgetLine.getOverspent != 0 %}
|