Files
kimai2/templates/invoice/renderer/text.txt.twig
2022-04-26 18:48:43 +02:00

16 lines
300 B
Twig

{% for key, value in invoice %}
{{ key }}
{% if value is not empty %}
{{ value|multiline_indent(' ') }}
{% endif %}
{% endfor %}
{% for entry in entries %}
---
{% for key, value in entry %}
{{ key }}
{% if value is not empty %}
{{ value|multiline_indent(' ') }}
{% endif %}
{% endfor %}
{% endfor %}