{# Status cards — grid of cards with status badge for each related entity #} {% for tab in group.tabs %} {% if tab.visible | default(true) %}
{% if group.tabs | length > 1 %}

{{ tab.label }}

{% endif %} {% if tab.create_url %}
+ New {{ tab.label }}
{% endif %} {% if tab.rows %}
{% for item in tab.rows %}
{% for col in tab.columns[:3] %} {% if loop.first %}

{{ item[col.key] | default("—") }}

{% else %}

{{ item[col.key] | default("—") }}

{% endif %} {% endfor %}
{% for col in tab.columns if col.type == "badge" %} {% if loop.first %} {{ item[col.key] | default("") }} {% endif %} {% endfor %}
{% endfor %}
{% else %}

No {{ tab.label | lower }} found.

{% endif %}
{% endif %} {% endfor %}