2022-08-15 18:07:39 -05:00
|
|
|
<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>
|
2022-08-23 13:41:21 -05:00
|
|
|
<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>
|
2022-08-15 18:07:39 -05:00
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|