mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix #9783
This commit is contained in:
parent
4eb3ce7c14
commit
f42fcff04a
@ -97,10 +97,16 @@
|
||||
first pay date is in the past.
|
||||
#}
|
||||
{% if entry.paid_dates|length == 0 and entry.pay_dates|length > 0 and entry.active %}
|
||||
<td class="paid_in_period text-warning">
|
||||
{{ entry.next_expected_match_diff }}
|
||||
<!-- {{ trans('firefly.bill_expected_date', {date: entry.next_expected_match_diff }) }} -->
|
||||
</td>
|
||||
{% if entry.next_expected_match_diff == trans('firefly.not_expected_period') %} {# terrible code, you should sue me for this. #}
|
||||
<td class="paid_in_period text-muted">
|
||||
{{ entry.next_expected_match_diff }}
|
||||
</td>
|
||||
{% else %}
|
||||
<td class="paid_in_period text-warning">
|
||||
{{ entry.next_expected_match_diff }}
|
||||
<!-- {{ trans('firefly.bill_expected_date', {date: entry.next_expected_match_diff }) }} -->
|
||||
</td>
|
||||
{% endif %}
|
||||
<td class="expected_in_period hidden-sm hidden-xs">
|
||||
|
||||
{% for date in entry.pay_dates %}
|
||||
|
Loading…
Reference in New Issue
Block a user