{% extends "::base.html.twig" %} {% block title "List of Target Transactions" %} {% block content %} {{ include(workplan_links, {'show_search': false}, with_context = false) }}
Target Transactions
{% if target is not null %} {% set id = target.getId() %} {{ target.getDetail() }}
{{ currency ~ ' ' ~ target.budget|number_format(2) }}

{% for post in data %} {% else %} {% endfor %}
DateDetailsAmount ({{ currency }})
{{ post.doneOn|date(date_format) }} {{ post.details }} {{ post.amount|number_format(2) }}
There are no transactions under this target currently.
Total Amount {{ spent|number_format(2) }}
Balance {{ (target.budget - spent)|number_format(2) }}
{% else %} Please click on a target in the left panel to view its details here. {% endif %}
{% endblock %}