{% set totalNewBlocks = 0 %}
{% for block in blocks %}
{% set blockId = block.id %}
{% if not blockId %}
{% set totalNewBlocks = totalNewBlocks + 1 %}
{% set blockId = 'new' ~ totalNewBlocks %}
{% endif %}
{% include "super-table/row/fields" with {
namespace: name ~ '[' ~ blockId ~ '][fields]',
element: block,
fields: block.getType().getFieldLayout().getFields(),
settings: supertableField,
} %}
{% if not staticField %}
|
|
{% endif %}
{% endfor %}
{% if not staticField %}
{{ supertableField.selectionLabel | default("Add a row") | t('site') }}
{% endif %}