{% extends "./layout/default" %} {% block breadcrumbs %} {{ Breadcrumbs.render(Route.getCurrentRoute.getName) }} {% endblock %} {% block content %} {% if total > 0 %}
| {{ trans('list.title') }} | {{ trans('list.transaction_s') }} | {{ trans('list.repetitions') }} | {{ trans('list.next_due') }} | |
|---|---|---|---|---|
| {% if rt.active == false %} {{ rt.description }} {% endif %} | 
 | {% if rt.occurrences|length == 0 %}
 {% if null == rt.repeat_until and rt.repetitions == 0 %} {{ 'recurring_repeats_forever'|_ }}. {% endif %} {% if null != rt.repeat_until and rt.repetitions == 0 %} {{ trans('firefly.recurring_repeats_until', {date: rt.repeat_until.formatLocalized(monthAndDayFormat)}) }}. {% endif %} {% if null == rt.repeat_until and rt.nr_of_repetitions != 0 %} {{ trans('firefly.recurring_repeats_x_times', {count: rt.nr_of_repetitions}) }}. {% endif %} | {% else %} | {{ rt.occurrences[0].formatLocalized(monthAndDayFormat) }}{% endif %} |