Expenses Per Category
{% if report.startDate %}
(From {{report.startDateUsingFormatter}}
{% if report.endDate %}
To {{report.endDateUsingFormatter}})
{% else %}
To Present)
{% /if %}
{% /if %}
Name |
Raw Cost |
Total Cost |
{% decimalMath totalCost = 0 %}
{% for categoryReport in expensesPerCategory %}
{{categoryReport.category.name}} |
{{categoryReport.cost}} |
{{categoryReport.costUsingFormatter}}
{% decimalMath totalCost = totalCost + categoryReport.cost %}
|
{% /for %}
Total: |
{{totalCost | currency_format}} |
Reported generated on {% now | date_format: "MMM dd yyyy 'at' HH:mm:ss" %}.