16 lines
300 B
Twig
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 %}
|