{% set href_prefix = url_prefix|default(route_prefix, true) %}
| {% endif %} {% for col in block.columns %} | {{ col.label }} {% if col.sortable %} ⇅ {% endif %} | {% endfor %}
|---|---|
| {% endif %} {% for col in block.columns %} |
{% set cell = row.get(col.key, {}) %}
{% if cell.type == "text" %}
{% if cell.tone %}
{{ cell.value }}
{% else %}
{{ cell.value }}
{% endif %}
{% elif cell.type == "link" %}
{% if cell.href %}
{{ cell.label }}
{% else %}
{{ cell.label }}
{% endif %}
{% elif cell.type == "badge" %}
{% if cell.tone %}
{{ cell.label }}
{% else %}
{{ cell.label }}
{% endif %}
{% elif cell.type == "status" %}
{{ cell.label }}
{% elif cell.type == "avatar_text" %}
{% if cell.initials %}{{ cell.initials }}{% else %}?{% endif %}
{% elif cell.type == "progress" %}
{{ cell.title }}
{% if cell.subtitle %}
{{ cell.subtitle }}
{% endif %}
{{ cell.label }}
{% elif cell.type == "actions" %}
{% for action in cell.get("items", []) %}
{% if action.href %}
{{ action.label }}
{% else %}
{{ action.label }}
{% endif %}
{% endfor %}
{% else %}
{{ cell.value if cell.value else "n/a" }}
{% endif %}
|
{% endfor %}