{% if invoice.taxes %}
{{ label('account.invoice', 'taxes') }}
{% for tax in invoice.taxes %} {% if tax.raw.legal_notice %} {% endif %} {% endfor %}
{{ label('account.invoice.tax', 'description') }} {{ label('account.invoice.tax', 'base') }} {{ label('account.invoice.tax', 'amount') }}
{{ tax.render.description }} {{ tax.render.base }} {{ tax.invoice.currency.render.symbol }} {{ tax.render.amount }} {{ tax.invoice.currency.render.symbol }}
{{ label('account.tax', 'legal_notice') }} {{ tax.render.legal_notice }}
{% endif %}