core/api/modules/order/tovar.html

22 lines
678 B
HTML
Executable File

<table class="table" style="border: 1px solid gray;">
<tr>
<td>Артикул</td>
<td>Наименование</td>
<td style="width: 100px;">Количество</td>
<td style="width: 100px;">Цена</td>
</tr>
{section name=customer2 loop=$tovarList}{if $tovarList[customer2].id}
<tr>
<td>{$tovarList[customer2].artikul}</td>
<td><a href="/tovar_show/{$tovarList[customer2].tovar_id}" title="{$tovarList[customer2].title}">{$tovarList[customer2].title|substr:30}</a></td>
<td>{$tovarList[customer2].kolvo}</td>
<td>{$tovarList[customer2].cena}</td>
</tr>
{/if}{/section}
</table>