This report has been generated by python in live at {{ a_date }}.
It integrates numbers too : {{a_number}}, {{another_number}}.
as well as a date : {{ a_date }}
and a string : {{ a_str }}
The book
This report is based on the book stored at '{{ book_url }}'
It has the following KVP:
key
value
{% for (k,v) in b.iteritems() %}
{{ k }}
{{ v.value }}
{% endfor %}
The book has the following accounts
in a tree
or a list (with KVP values)
{% for acc in b.root_account.children recursive %}
{{ acc.name }}
{% if acc.children %}
{{ loop(acc.children) }}
{% endif %}
{% endfor %}
{% for acc in b.accounts %}
{{ acc.fullname }} => {% for (k,v) in acc.iteritems() %} {{ (k,v.value) }} {% endfor %}
{% endfor %}
Have fun customising this report (available at '{{path_report}}')!