Files
2026-05-13 09:43:32 -04:00

9 lines
222 B
Smarty

<Table name="{$TableName}">
{foreach item=Row from=$Rows name=RowsGrid}
<Row>
{foreach item=RowColumn key=FieldName from=$Row}
<{$FieldName}>{$RowColumn}</{$FieldName}>
{/foreach}
</Row>
{/foreach}
</Table>