{{ trans('form.name') }} | {{ trans('form.amount_min') }} | {{ trans('form.amount_max') }} | {{ trans('form.amount') }} | {{ trans('form.under') }} | ||
---|---|---|---|---|---|---|
{{ line.getBill.name }}
{{ trans('firefly.bill_expected_between', {start: line.getPayDate.formatLocalized(monthAndDayFormat), end: line.getEndOfPayDate.formatLocalized(monthAndDayFormat) }) }} |
{{ line.getMin|formatAmount }} | {{ line.getMax|formatAmount }} | {# if bill is hit, show hit amount #} {% if line.isHit %}{{ line.getAmount|formatAmount }} | {% endif %} {# if not but is active, show "not yet charged #} {% if not line.isHit and line.isActive %}{{ 'notCharged'|_ }} | {% endif %} {% if not line.isActive and not line.isHit %}{% endif %} | {% if line.isHit %} {{ (line.getMax + line.getAmount)|formatAmount }} {% endif %} |