17 lines
425 B
Smarty
17 lines
425 B
Smarty
|
|
<table cellspacing="0" cellpadding="0" border="0" style="width:100%;" id="myTable" class="tablesorter">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th >name</th>
|
||
|
|
<th >ilosc</th>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
{foreach from=$POSITION_LIST key="key" item="item" name="components"}
|
||
|
|
{if $item.id!=''}
|
||
|
|
<tr style="vertical-align:top;">
|
||
|
|
<td >{$item.name}</td>
|
||
|
|
<td >{$item.quantity}</td>
|
||
|
|
</tr>
|
||
|
|
{/if}
|
||
|
|
{/foreach}
|
||
|
|
</tbody>
|
||
|
|
</table>
|