7 lines
127 B
Text
7 lines
127 B
Text
|
{% for key, value in item.items() %}
|
||
|
{% if value != "" %}
|
||
|
{{ key }} {{ value }}
|
||
|
{% else %}
|
||
|
# {{ key }}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|