{% if items is defined and items|length > 0 %} {% for item in items %} {# Рендерим каждую колонку #} {% for key, column in columns %} {{ render_cell(item, key, column)|raw }} {% endfor %} {# Колонка действий #} {% if actionsConfig is defined and actionsConfig|length > 0 %} {{ render_actions(item, actionsConfig)|raw }} {% endif %} {% endfor %} {% else %} {# Пустое состояние #} {% if emptyIcon is defined and emptyIcon %}
{% endif %}

{{ emptyMessage|default('Нет данных') }}

{% if emptyActionUrl is defined and emptyActionUrl %} {% if emptyActionIcon is defined and emptyActionIcon %} {% endif %} {{ emptyActionLabel|default('Добавить') }} {% endif %} {% endif %} {# Футер с пагинацией #} {{ include('@components/table/pagination.twig', { pagination: pagerDetails, id: id }) }}