- |
+ |
|
+
+
+ |
{{ trans('firefly.start_of_reconcile_period', {period: start.formatLocalized(monthAndDayFormat) }) }}
@@ -38,9 +41,12 @@
{# end marker #}
{% if journal.date <= end and endSet == false %}
- |
+ |
|
+
+
+ |
{{ trans('firefly.end_of_reconcile_period', {period: end.formatLocalized(monthAndDayFormat) }) }}
diff --git a/resources/views/v1/index.twig b/resources/views/v1/index.twig
index 480041b5da..7672dd17b0 100644
--- a/resources/views/v1/index.twig
+++ b/resources/views/v1/index.twig
@@ -80,34 +80,28 @@
{% endfor %}
diff --git a/resources/views/v1/list/attachments.twig b/resources/views/v1/list/attachments.twig
index abfdba55d3..3b87ffcdc3 100644
--- a/resources/views/v1/list/attachments.twig
+++ b/resources/views/v1/list/attachments.twig
@@ -44,4 +44,4 @@
|
{% endfor %}
-
\ No newline at end of file
+
diff --git a/resources/views/v1/recurring/index.twig b/resources/views/v1/recurring/index.twig
index 98f53febe2..9220451138 100644
--- a/resources/views/v1/recurring/index.twig
+++ b/resources/views/v1/recurring/index.twig
@@ -85,6 +85,11 @@
|
+ {% if null != rt.repeat_until and today > rt.repeat_until %}
+
+ {{ trans('firefly.repeat_until_in_past', {date: rt.repeat_until.formatLocalized(monthAndDayFormat) }) }}
+
+ {% endif %}
{% for rep in rt.repetitions %}
- {{ rep.description }}
@@ -95,13 +100,13 @@
({{ trans('firefly.recurring_skips_more', {count: rep.repetition_skip})|lower }}).
{% endif %}
{% if rep.weekend == 3 %}
- {{ 'will_jump_friday'|_ }}
+
{{ 'will_jump_friday'|_ }}
{% endif %}
{% if rep.weekend == 4 %}
- {{ 'will_jump_monday'|_ }}
+ {{ 'will_jump_monday'|_ }}
{% endif %}
{% if rep.weekend == 2 %}
- {{ 'except_weekends'|_ }}
+ {{ 'except_weekends'|_ }}
{% endif %}
{% endfor %}
@@ -118,11 +123,15 @@
{% endif %}
|
- {% if rt.occurrences|length == 0 %}
- |
- {% else %}
- {{ rt.occurrences[0].formatLocalized(monthAndDayFormat) }} |
- {% endif %}
+
+
+ {% for rep in rt.repetitions %}
+ {% for occ in rep.occurrences %}
+ - {{ occ.formatLocalized(monthAndDayFormat) }}
+ {% endfor %}
+ {% endfor %}
+
+ |
{% endfor %}
diff --git a/resources/views/v1/recurring/show.twig b/resources/views/v1/recurring/show.twig
index f0c97dd750..1669c522aa 100644
--- a/resources/views/v1/recurring/show.twig
+++ b/resources/views/v1/recurring/show.twig
@@ -52,7 +52,11 @@
-
+ {% if null != array.repeat_until and today > array.repeat_until %}
+
+ {{ trans('firefly.repeat_until_in_past', {date: array.repeat_until.formatLocalized(monthAndDayFormat) }) }}
+
+ {% endif %}
{% for rep in array.repetitions %}
-
diff --git a/resources/views/v1/reports/partials/bills.twig b/resources/views/v1/reports/partials/bills.twig
index f5106a04d0..1e523a1dbf 100644
--- a/resources/views/v1/reports/partials/bills.twig
+++ b/resources/views/v1/reports/partials/bills.twig
@@ -21,7 +21,7 @@
|
{{ formatAmountBySymbol(bill.amount_max, bill.currency_symbol, bill.currency_decimal_places) }}
|
-
+ |
{% for date in bill.expected_dates %}
{{ date.formatLocalized(monthAndDayFormat) }}
{% endfor %}
|