{% extends "./layout/default" %} {% block breadcrumbs %} {{ Breadcrumbs.render(Route.getCurrentRoute.getName) }} {% endblock %} {% block content %} {% if recurring|length > 0 %}

{{ 'recurrences'|_ }}

{{ ('make_new_recurring')|_ }}
{{ recurring.render|raw }}
{% for rt in recurring %} {% endfor %}
{{ trans('list.title') }} {{ trans('list.transaction_s') }} {{ trans('list.repetitions') }}
{{ rt.transaction_type|_ }}: {{ rt.title }} {% if rt.description|length > 0 %}
{{ rt.description }}
{% endif %}
    {% for rtt in rt.transactions %}
  1. {# normal amount + comma#} {{ formatAmountBySymbol(rtt['amount'],rtt['currency_symbol'],rtt['currency_dp']) }}{% if rtt['foreign_amount'] == null %},{% endif %} {# foreign amount + comma #} {% if null != rtt['foreign_amount'] %} ({{ formatAmountBySymbol(rtt['foreign_amount'],rtt['foreign_currency_symbol'],rtt['foreign_currency_dp']) }}), {% endif %} {{ rtt['source_account_name'] }}{{ rtt['destination_account_name'] }}
  2. {% endfor %}
    {% for rep in rt.repetitions %}
  • {{ rep.description }}
  • {% endfor %}
{{ recurring.render|raw }}
{% endif %} {% if recurring|length == 0 and page == 1 %} {% include 'partials.empty' with {what: 'default', type: 'recurring',route: route('recurring.create')} %} {% endif %} {% endblock %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %}