Files
interblue.pl/modules/pshowimporter/views/templates/parts/sample_data_table.tpl
2024-10-25 14:16:28 +02:00

41 lines
1020 B
Smarty

<div class="panel">
<div class="panel-heading">
{l s='Sample data from file' mod='pshowimporter'}
</div>
<div class="panel-wrapper">
<div class="table-responsive-row">
<table class="table">
<thead>
<tr>
<th></th>
<th>{l s='Line from file' mod='pshowimporter'}</th>
</tr>
</thead>
<tbody>
{assign var='i' value=1}
{foreach from=$rows item='row'}
<tr>
<td>
{$i}
</td>
<td>
{(string)$row|strip_tags}
</td>
</tr>
{assign var='i' value=$i+1}
{/foreach}
</tbody>
</table>
</div>
</div>
</div>