{% 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.attachments > 0 %}
{% endif %}
{% if rt.active == false %} {{ rt.description }} {% endif %} |
|
{% if null != rt.repeat_until and today > rt.repeat_until %}
{{ trans('firefly.repeat_until_in_past', {date: rt.repeat_until.isoFormat(monthAndDayFormat) }) }}
{% 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.isoFormat(monthAndDayFormat)}) }}. {% endif %} {% if null == rt.repeat_until and rt.nr_of_repetitions != 0 %} {{ trans_choice('firefly.recurring_repeats_x_times', rt.nr_of_repetitions) }}. {% endif %} |
|