Files
ms1inscription-v5/rapports/components/templates/variables_container.tpl
2026-05-13 09:43:32 -04:00

16 lines
287 B
Smarty

<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Variable name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{foreach from=$Variables key=name item=value}
<tr>
<td>{$name}</td>
<td>{$value}</td>
</tr>
{/foreach}
</tbody>
</table>