You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
407 B

::use 'contractadmin/design.mtt'::
<h3>::_("Products")::</h3>
<table class="table">
::foreach p c.getProducts()::
<tr>
<td>
<img src="::p.getImage()::" style="width:64px;height:64px;" />
</td>
<td>$$nullSafe(::p.ref::)</td>
<td>::p.name::</td>
<td>::p.stock::</td>
<td>
$$edit(modifier,/product/edit/::p.id::)
</td>
</tr>
::end::
</table>
::end::