{% for insight in insights %}
{% if insight.type == 'warning' %} ⚠️ {% elif insight.type == 'success' %} ✅ {% else %} ℹ️ {% endif %}
{{ insight.title }}: {{ insight.message | safe }}
{% endfor %}