{{ key }}:
{% if value is string and (value.startswith('http://') or value.startswith('https://')) %}
{{ value }}
{% elif value is string and value|length > 100 %}
{{ value[:100] }}...{{ value }}
{% elif value is iterable and value is not string and value is not mapping %}
{% for item in value %}
{{ item }}
{% endfor %}
{% elif value is mapping %}
{% for subkey, subvalue in value.items() %}
{{ subkey }}: {{ subvalue }}
{% endfor %}
{% else %}
{{ value }}
{% endif %}
{% endfor %}
{% endif %}
{% if items %}
{% endif %}
{% for item in items %}
{{ item.name }}
{% if item.creation_time and item.creation_time|int > 0 %}
{{ item.creation_time|int|datetime_from_timestamp|strftime('%Y-%m-%d') }}
{% else %}
Unknown
{% endif %}