{{ 'FORM.FORM_RENDERER.ROW_LABEL' | translate: {number: rowIndex + 1} }}
@let shouldDisplayRemoveRowButton = !currentRootElement.field.rows[rowIndex].isInitial || (currentRootElement.field.rows[rowIndex].isInitial && currentRootElement.field.params.allowInitialRowsDelete);
@if (shouldDisplayRemoveRowButton) {
}
@for (column of row.columns; track column; let columnIndex = $index) {
@for (field of column?.fields; track field) {
@if (field.type === 'section') {
} @else {
}
}
}
}