{% for item in project.line_items %}
{{ item.name|star_emphasis }}
{{ item.amount_cents|money(currency) }}
{% endfor %}
Total {{ project.total_cents|money(currency) }}
{% if project.paid_cents > 0 %}
Paid {{ project.paid_cents|money(currency) }}
Balance {{ project.balance_cents|money(currency) }}
{% endif %}