mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-16 01:06:46 +00:00
Add "not expected this period" message, fix https://github.com/firefly-iii/firefly-iii/issues/9084
This commit is contained in:
@@ -98,6 +98,7 @@
|
||||
<!-- {{ trans('firefly.bill_expected_date', {date: entry.next_expected_match_diff }) }} -->
|
||||
</td>
|
||||
<td class="expected_in_period hidden-sm hidden-xs">
|
||||
|
||||
{% for date in entry.pay_dates %}
|
||||
{{ formatDate(date, monthAndDayFormat) }}<br>
|
||||
{% endfor %}
|
||||
@@ -111,6 +112,7 @@
|
||||
#}
|
||||
{% if entry.paid_dates|length > 0 and entry.active %}
|
||||
<td class="paid_in_period text-success">
|
||||
|
||||
{% for currentPaid in entry.paid_dates %}
|
||||
<a href="{{ route('transactions.show',currentPaid.transaction_group_id) }}">
|
||||
{{ formatDate(currentPaid.date, monthAndDayFormat) }}
|
||||
@@ -120,7 +122,9 @@
|
||||
</td>
|
||||
<td class="expected_in_period hidden-sm hidden-xs">
|
||||
{% if entry.next_expected_match %}
|
||||
{{ formatDate(entry.next_expected_match, monthAndDayFormat) }}
|
||||
{{ formatDate(entry.next_expected_match, monthAndDayFormat) }}
|
||||
{% else %}
|
||||
<span class="text-muted">{{ entry.next_expected_match_diff }}</span>
|
||||
{% endif %}
|
||||
</td>
|
||||
{% endif %}
|
||||
|
Reference in New Issue
Block a user