{% 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') }} |
---|---|---|
{% if rt.active == false %} {{ rt.description }} {% endif %} |
|
{% 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.repetitions != 0 %} {{ trans('firefly.recurring_repeats_x_times', {count: rt.repetitions}) }}. {% endif %} |