{{account_name}}
back to overview
{% for table in tables %}
{{ table.category }}
{% for head in table.data.header %}
{{head}}
{% endfor %}
{% for row in table.data.rows %}
{% for item in row %}
{{item}}
{% endfor %}
{% endfor %}
{% endfor %}