get_my/client/AdminMgmt/ProductMgmt/prodMgmtTbl.html
2022-08-23 13:41:21 -05:00

31 lines
No EOL
1.2 KiB
HTML

<template name="prodMgmtTbl">
<div class="row">
<div class="col s12 m12 l12">
<table class="highlight striped responsive-table">
<thead>
<tr>
<th>Product Name</th>
<th>Category</th>
<th>Store</th>
<th>Location</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{{#each products}}
<tr>
<td>{{prodName}}</td>
<td>{{prodCategory}}</td>
<td>{{prodStore}}</td>
<td>{{prodLocation}}</td>
<td>
<i class="material-icons clickable deleteProduct tooltipped" data-position="top" data-tooltip="Delete Product">delete</i>
<i class="material-icons clickable editProduct tooltipped" data-position="top" data-tooltip="Edit Product">edit</i>
</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
</div>
</template>