{% comment %}
Status Badges Display Widget
Shows multiple conditional status badges.
{% endcomment %}
{% if badges %}
{% for badge in badges %}
{% if badge.icon %}
{{ badge.icon }}
{% endif %}
{{ badge.label }}
{% if not forloop.last %}{{ separator|safe }}{% endif %}
{% endfor %}
{% elif empty_text %}
{{ empty_text }}
{% else %}
—
{% endif %}