{% comment %} Stacked Display Widget Renders multiple field values in a stacked layout (rows with optional inline items). {% endcomment %}
{% for row in rows %} {% if row.html %} {# Single item row #}
{{ row.html|safe }}
{% else %} {# Inline row (list of items) #}
{% for item in row %} {{ item.html|safe }} {% endfor %}
{% endif %} {% empty %} {% endfor %}