{# File list — compact rows for document/evidence entities #} {# Contract: ~/.claude/skills/ux-architect/components/related-displays.md (UX-032) #} {% 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[:2] %} {% if loop.first %}

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

{% else %}

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

{% endif %} {% endfor %}
{% for col in tab.columns if col.type == "date" %} {% if loop.first %} {{ item[col.key] | dateformat }} {% endif %} {% endfor %}
{% endfor %}
{% else %}

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

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