20 lines
377 B
Twig
20 lines
377 B
Twig
{% for key, value in model.toArray %}
|
|
{{ key }}:
|
|
{% if value is not empty %}
|
|
{{ value|multiline_indent(' ') }}
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
{% for entry in model.calculator.entries %}
|
|
---
|
|
|
|
{% set items = model.itemToArray(entry) %}
|
|
{% for key, value in items %}
|
|
{{ key }}:
|
|
{% if value is not empty %}
|
|
{{ value|multiline_indent(' ') }}
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
{% endfor %}
|