{% for entry in bills %} {% if entry.paidDates.count() == 0 and entry.payDates.count() == 0 and entry.active %} {% endif %} {% if entry.paidDates.count() == 0 and entry.payDates.count() > 0 and entry.active %} {% endif %} {% if entry.paidDates.count() == entry.payDates.count() and entry.payDates.count() > 0 and entry.active %} {% endif %} {% if not entry.active %} {% endif %} {% endfor %}
{{ trans('list.name') }} {{ trans('list.matchingAmount') }}
{{ entry.name }} {{ entry.amount_min|formatAmount }} {{ entry.amount_max|formatAmount }} {{ 'not_expected_period'|_ }} {{ 'not_or_not_yet'|_ }} {% for date in entry.paidDates %} {{ date.formatLocalized(monthAndDayFormat) }}
{% endfor %}
~