| {% endif %} {% for col in block.columns %} | {% if col.sortable and col.sort_href %} {{ col.label }} {% if col.sort_active %}{% endif %} {% else %} {{ col.label }} {% 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 ("н/д" if locale == 'ru' else "n/a") }}
{% endif %}
|
{% endfor %}