{{ 'bills'|_ }}

{% for line in bills.getBills %} {# if bill is hit, show hit amount #} {% if line.isHit %} {% endif %} {# if not but is active, show "not yet charged #} {% if not line.isHit and line.isActive %} {% endif %} {% if not line.isActive and not line.isHit %} {% endif %} {% endfor %}
{{ trans('form.name') }} {{ trans('form.amount') }}
{{ line.getBill.name }}
{{ trans('firefly.bill_expected_between', {start: line.getPayDate.formatLocalized(monthAndDayFormat), end: line.getEndOfPayDate.formatLocalized(monthAndDayFormat) }) }}
{{ line.getAmount|formatAmount }} {{ 'notCharged'|_ }}