Income
{% if report.startDate %}
(From {{report.startDateUsingFormatter}}
{% if report.endDate %}
To {{report.endDateUsingFormatter}})
{% else %}
To Present)
{% /if %}
{% /if %}
Month |
Income |
{% decimalMath totalCost = 0 %}
{% for reportEntry in monthlyIncome %}
{% decimalMath totalCost = totalCost + reportEntry.monthlyIncome %}
{{ reportEntry.monthAsAbbreviatedString }} |
{{ reportEntry.monthlyIncome }} |
{{ reportEntry.monthAsString }} {{ reportEntry.yearAsInt }} |
{{ reportEntry.monthlyIncomeUsingFormatter }} |
{% /for %}
Total: |
{{totalCost | currency_format}} |
Reported generated on {% now | date_format: "MMM dd yyyy 'at' HH:mm:ss" %}.